Вы не можете выбрать более 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. }