AFAIK void在编程语言方面没有任何意义.那么为什么在.Net框架中它被声明为struct?
using System.Runtime.InteropServices; namespace System { /// <summary> /// Specifies a return value type for a method that does not return a value. /// </summary> /// <filterpriority>2</filterpriority> [ComVisible(true)] [Serializable] [StructLayout(LayoutKind.Sequential,Size = 1)] public struct Void { } }
解决方法
System.Void实际上是一个标记类型 – 像
MethodInfo.ReturnType
这样的成员必须有一些代表void的方法,而System.Void是.NET团队选择的方式.
你不应该像普通型一样使用它.这是一个有效的解决方法 – 有点像F# Unit
type,但不完全集成到类型系统中.