What is the Void in c#?

Asked 01-Nov-2019
Viewed 652 times

1 Answer


0

The void keyword is used as a return type for a method. When we declare or define a method with the void keyword, it means that the method cannot return any value. The void keyword cannot be used in a parameterized method. A method with no parameters or return value is declared below:
public void SampleMethod()

{
    // Body of the method.
}