Give alias in namespace C#

Sourav.Kayal
Posted by Sourav.Kayal under C# category on | Points: 40 | Views : 1714
using System;
using SOURAV = System.Console;
namespace Test1
{
class Program
{
static void Main(string[] args)
{
SOURAV.WriteLine("Hello world");
Console.ReadLine();
}
}
}

Comments or Responses

Login to post response