2019-05-19 23:14:47 +08:00
|
|
|
|
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
|
|
|
|
|
|
|
|
|
|
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
2020-04-16 11:28:14 +08:00
|
|
|
|
#pragma warning disable CS0436
|
2019-05-19 23:14:47 +08:00
|
|
|
|
|
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
|
|
|
{
|
2019-05-30 18:41:23 +08:00
|
|
|
|
internal sealed class AsyncMethodBuilderAttribute : Attribute
|
2019-05-19 23:14:47 +08:00
|
|
|
|
{
|
|
|
|
|
public Type BuilderType { get; }
|
|
|
|
|
|
|
|
|
|
public AsyncMethodBuilderAttribute(Type builderType)
|
|
|
|
|
{
|
|
|
|
|
BuilderType = builderType;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|