加入可空特性相关stub,让下游net40应用具备可空特性判断能力。主要是Stardust和NewLife.IoT
大石头
authored at
2023-10-21 08:41:04
X
#if NETFRAMEWORK || NETSTANDARD || NETCOREAPP3_1
using System.ComponentModel;
namespace System.Runtime.CompilerServices;
/// <summary>保留供编译器用于跟踪元数据。 开发人员不应在源代码中使用此类。</summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static class IsExternalInit
{
}
#endif
|