0
我對sharpsnmplib中的NET452條件符號的含義/使用感到困惑。一個例子是此屬性在SnmpMessageExtension:sharpsnmplib中Conditional NET452的定義?
public static bool IsRunningOnWindows
{
get
{
#if NET452
return !IsRunningOnMono;
#elif NETSTANDARD1_3
return RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
#else
return false;
#endif
}
這是否意味着,如果我更改目標框架 - 說 - .NET版本4.6.1,則此屬性將始終返回false,雖然我仍在Windows上運行?
感謝