// Program to Enter and Display the Text
// Use of Console.ReadLine
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace chash2
{
class Program
{
static void Main(string[] args)
{
string name;
Console.WriteLine("Please Enter Your Good Name");
name = Console.ReadLine();
Console.WriteLine("Welcome {0} in your first csharp program", name);
Console.ReadLine();
}
}
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.