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

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