Files
linux-packaging-mono/mcs/class/System.Private.CoreLib/System.Runtime.CompilerServices/RuntimeFeature.cs

8 lines
186 B
C#
Raw Normal View History

namespace System.Runtime.CompilerServices
{
partial class RuntimeFeature
{
public static bool IsDynamicCodeSupported => true;
public static bool IsDynamicCodeCompiled => true;
}
}