Unity 框架

AsyncMethodBuilderAttribute.cs 413B

123456789101112131415161718
  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. }