暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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