UniTask/Assets/UniRx.Async/CompilerServices/AsyncMethodBuilderAttribute.cs

18 lines
470 B
C#
Raw Normal View History

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
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