Search........

Google

Sunday, March 2, 2008

How we will get the input....

using System;
namespace name
{
class Hello
{
static void Main()
{
String str;
Console.WriteLine(" Enter Your Name");
str=Console.ReadLine(); //here we will get the input , it is in string type
Console.WriteLine("Your Name is "+str);
}
}
}


No comments: