C# beginner help
Posted
by ThickBook
on Stack Overflow
See other posts from Stack Overflow
or by ThickBook
Published on 2010-06-18T08:10:17Z
Indexed on
2010/06/18
8:13 UTC
Read the original article
Hit count: 519
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);
}
}
© Stack Overflow or respective owner