選択できるのは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. }