public class sample
{
public sample()//Constructor
{
A.WriteLine("Its Constructor");
}
}
class Program
{
static void Main(string[] args)
{
Sample objs = new Sample();
}
}
this is my code
i create object for
Sample objs = new Sample(); that object
objs is
Constructor object or Class object
gowthaman8870226416