0
Return?
What is "return" mean....?
2 Answers
+ 3
the exact formulation
https://en.m.wikipedia.org/wiki/Return_statement
P.S. code write after return is not executables
for example:
return value;
Console.Write("hello"); // this is not executed
+ 2
The return statement ends function execution and specifies a value to be returned to the function caller.