Answers for "how to input parameters in c#"

C#
0

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
Posted by: Guest on May-12-2021

Code answers related to "how to input parameters in c#"

C# Answers by Framework

Browse Popular Code Answers by Language