The void keyword represents a null type.
public class MyClass
{
public void doSomething();
{
<statements>
return;
}
}
void may be used as the return type of a method to indicate the method does not return a value.
None.