What is System.Void?
From the documentation:
The
Void
structure is used in theSystem.Reflection
namespace, but is rarely useful in a typical application. TheVoid
structure has no members other than the ones all types inherit from theObject
class.
There's no reason really to use it in code.
Also:
var nothing = new void();
This doesn't compile for me. What do you mean when saying it "works"?
Update:
A method void Foo()
does not return anything. System.Void
is there so that if you ask (through Reflection) "what is the type of the return value of that method?", you can get the answer typeof(System.Void)
. There is no technical reason it could not return null
instead, but that would introduce a special case in the Reflection API, and special cases are to be avoided if possible.
Finally, it is not legal for a program to contain the expression typeof(System.Void)
. However, that is a compiler-enforced restriction, not a CLR one. Indeed, if you try the allowed typeof(void)
and look at its value in the debugger, you will see it is the same value it would be if typeof(System.Void)
were legal.
void
/System.Void
is different from int
/System.Int32
, it's a special struct in C#, used for reflection only. See this example:
class Program
{
public static void Main(string[] args)
{
Type voidType = typeof(Program).GetMethod("Main").ReturnType;
}
}
There must be some type used to describe the return type of Main
method here, that's why we have System.Void
.