RuntimeFeature.cs 186 B

12345678
  1. namespace System.Runtime.CompilerServices
  2. {
  3. partial class RuntimeFeature
  4. {
  5. public static bool IsDynamicCodeSupported => true;
  6. public static bool IsDynamicCodeCompiled => true;
  7. }
  8. }