hello every one i am just a beginner in c# progrmming and trying to lern it myself. can anybody help me to resolve the error in the following code..............
class Program
{
static void Main(string[] args)
{
Console.Clear();
Console.Write("hi this is ");
Console.Write(" "+args[0]);
Console.WriteLine(" "+args[1]);
Console.Read();
}
}