+ 1
If a method does not return any value, you should use the return type:
If a method does not return any value, you should use the return type:
1 Respuesta
0
public void yourMethod(){
Console.WriteLine("It doesn't return anything");
}
Use void :)