暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MonoOnlyAttribute.cs 361B

1234567891011121314151617181920
  1. using System;
  2. namespace Burst.Compiler.IL.Tests
  3. {
  4. [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
  5. #if BURST_INTERNAL
  6. public
  7. #else
  8. internal
  9. #endif
  10. class MonoOnlyAttribute : Attribute
  11. {
  12. #pragma warning disable CS0414
  13. public MonoOnlyAttribute(string reason)
  14. {
  15. }
  16. #pragma warning restore CS0414
  17. }
  18. }