主线升级到.Net4.5,为了更好的使用await/async。 次线保留.Net4.0
Stone 编写于 2016-08-01 23:57:53
X
using System;
using System.Runtime.InteropServices;

#if NET4
namespace System.Runtime.CompilerServices
{
	[StructLayout(LayoutKind.Sequential, Size = 1)]
	internal struct VoidTaskResult
	{
	}
}
#endif