DTLib/DTLib/InitSetterFix.cs

10 lines
243 B
C#

// включает init и record из c# 9.0
#if NETSTANDARD
using System.ComponentModel;
namespace System.Runtime.CompilerServices
{
[EditorBrowsable(EditorBrowsableState.Never)]
public class IsExternalInit { }
}
#endif