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;
}
}