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.
 
 
 

18 line
413 B

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