44.Simple Namespace
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace simple_namespace
{
namespace first_namespace
{
class demo
{
public void print()
{
Console.WriteLine("This is first simple namespace");
}
}
}
class Program
{
static void Main(string[] args)
{
first_namespace.demo obj = new first_namespace.demo();
obj.print();
Console.Read();
}
}
}
OUTPUT:
This is first simple namespace
Comments
Post a Comment