| title | void (C# Reference) | ||
|---|---|---|---|
| ms.date | 07/20/2015 | ||
| ms.prod | .net | ||
| ms.technology |
|
||
| ms.topic | article | ||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| ms.assetid | 0d2d8a95-fe20-4fbd-bf5d-c1e54bce71d4 | ||
| caps.latest.revision | 15 | ||
| author | BillWagner | ||
| ms.author | wiwagn |
When used as the return type for a method, void specifies that the method doesn't return a value.
void isn't allowed in the parameter list of a method. A method that takes no parameters and returns no value is declared as follows:
public void SampleMethod()
{
// Body of the method.
}void is also used in an unsafe context to declare a pointer to an unknown type. For more information, see Pointer types.
void is an alias for the .NET Framework xref:System.Void?displayProperty=nameWithType type.
[!INCLUDECSharplangspec]
C# Reference
C# Programming Guide
C# Keywords
Reference Types
Value Types
Methods
Unsafe Code and Pointers