C# beginner help
- by ThickBook
Can you help in this example? I am a beginner. Thanks
using System;
class Program
{
public static void Mian(string[] args)
{
Console.Write("Your Name?: ");
string name = Console.Read();
Console.WriteLine("Welcome {0}", name);
}
}