how to input parameters in c# code example
Example: how to input parameters in c#
static void MyMethod(string fname)
{
Console.WriteLine(fname + " Refsnes");
}
//If the code is already in a static you won't need to put static infront of it
static void MyMethod(string fname)
{
Console.WriteLine(fname + " Refsnes");
}
//If the code is already in a static you won't need to put static infront of it