Out Parameter Modification
Rathrola Prem Kumar
Select an image from your device to upload
void ModifyValue(out int x){ x = 10; x += 5;}
int value = 3;ModifyValue(out value);Console.WriteLine(value); // What is the output?