haow to handle retunred values c# code example
Example 1: if a method doesnt rutern a value, what shouyld i reeturn c#
return void;
Example 2: cannot initialize a by-value variable with a reference
// must declare variable as ref as well!
ref int x = ref SomeClass.variable;