IsExternalInit.cs 620 B

123456789101112131415161718192021
  1. #if !NET5_0_OR_GREATER
  2. // Source: https://github.com/dotnet/runtime/blob/v6.0.5/src/libraries/Common/src/System/Runtime/CompilerServices/IsExternalInit.cs
  3. // Licensed to the .NET Foundation under one or more agreements.
  4. // The .NET Foundation licenses this file to you under the MIT license.
  5. using System.ComponentModel;
  6. namespace System.Runtime.CompilerServices;
  7. /// <summary>
  8. /// Reserved to be used by the compiler for tracking metadata.
  9. /// This class should not be used by developers in source code.
  10. /// </summary>
  11. [EditorBrowsable(EditorBrowsableState.Never)]
  12. internal static class IsExternalInit
  13. {
  14. }
  15. #endif