//
// 为 netstandard2.0 提供 record 类型支持
#if NETSTANDARD2_0 || NETSTANDARD2_1
namespace System.Runtime.CompilerServices
{
using System.ComponentModel;
///
/// Reserved to be used by the compiler for tracking metadata.
/// This class should not be used by developers in source code.
///
[EditorBrowsable(EditorBrowsableState.Never)]
internal static class IsExternalInit
{
}
}
#endif