Cosmos/source/Cosmos.Core_Plugs/System/CLRConfigImpl.cs
2018-12-27 21:14:56 +00:00

14 lines
322 B
C#

using IL2CPU.API.Attribs;
namespace Cosmos.Core_Plugs.System
{
[Plug("System.CLRConfig, System.Private.CoreLib")]
public static class CLRConfigImpl
{
public static bool GetBoolValue(string switchName, out bool exist)
{
exist = false;
return false;
}
}
}