IsExternalInit.cs 598 B

123456789101112131415161718
  1. using System.ComponentModel;
  2. using System.Diagnostics;
  3. using System.Diagnostics.CodeAnalysis;
  4. // ReSharper disable CheckNamespace
  5. namespace System.Runtime.CompilerServices;
  6. /// <summary>
  7. /// Reserved to be used by the compiler for tracking metadata.
  8. /// This class should not be used by developers in source code.
  9. /// </summary>
  10. /// <remarks>
  11. /// Copied from .net source code, for support of init property accessors in netstandard2.0.
  12. /// </remarks>
  13. [ExcludeFromCodeCoverage]
  14. [DebuggerNonUserCode]
  15. [EditorBrowsable (EditorBrowsableState.Never)]
  16. public static class IsExternalInit;