説明なし
選択できるのは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. }