AsyncMethodBuilderAttribute.cs 413 B

1234567891011121314151617
  1. 
  2. #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
  3. #pragma warning disable CS0436
  4. namespace System.Runtime.CompilerServices
  5. {
  6. internal sealed class AsyncMethodBuilderAttribute : Attribute
  7. {
  8. public Type BuilderType { get; }
  9. public AsyncMethodBuilderAttribute(Type builderType)
  10. {
  11. BuilderType = builderType;
  12. }
  13. }
  14. }