11 lines
307 B
C#
11 lines
307 B
C#
namespace System.Runtime.CompilerServices;
|
|||
|
|
|
||
|
|
using ComponentModel;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Reserved to be used by the compiler for tracking metadata.
|
||
|
|
/// This class should not be used by developers in source code.
|
||
|
|
/// </summary>
|
||
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
||
|
|
internal static class IsExternalInit;
|