AsyncMethodBuilderAttribute.cs 335 B

1234567891011121314151617
  1. #if !NOT_UNITY
  2. namespace System.Runtime.CompilerServices
  3. {
  4. public sealed class AsyncMethodBuilderAttribute: Attribute
  5. {
  6. public Type BuilderType
  7. {
  8. get;
  9. }
  10. public AsyncMethodBuilderAttribute(Type builderType)
  11. {
  12. BuilderType = builderType;
  13. }
  14. }
  15. }
  16. #endif