class CommandLine
{
static void Main(string[] args)
{
// The Length property provides the number of array elements
System.Console.WriteLine("parameter count = {0}", args.Length);
for (int i = 0; i < args.Length; i++)
{
System.Console.WriteLine("Arg[{0}] = [{1}]", i, args[i]);
}
}
}
class CommandLine2
{
static void Main(string[] args)
{
System.Console.WriteLine("Number of command line parameters = {0}", args.Length);
foreach (string s in args)
{
System.Console.WriteLine(s);
}
}
}
반응형
'프로그래밍 > C#' 카테고리의 다른 글
C# 문자열 Mid,Left,Right (0) | 2019.03.24 |
---|---|
C# lock (0) | 2019.03.24 |
C# 비트 연산 (0) | 2019.03.24 |
C# 소켓 클라이언트 socket client (0) | 2019.03.24 |
C# 소켓 서버 socket server (0) | 2019.03.24 |