using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloCSharp
{
class Program
{

static void Main(string[] args)
{
//args에서 스트링 배열을 받아서 입력받는다.
Console.writeLine("hello csharp");
//Console.writeLine(args.Length);
Console.WriteLine("hello"+args[0] );

Console.Readkey();
}
}


}


+ Recent posts