Answers for "c# console application get arguments"

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 "c# console application get arguments"

C# Answers by Framework

Browse Popular Code Answers by Language