Users Pricing

blog

home / developersection / blogs / what is an object?

What is an object?

Pushpendra Singh 3806 09 Dec 2010 Updated 18 Sep 2014

Object is the instance of the class.whenyou create the object you can specify the properties of that object.each object has at least one attribute that makes it unique.


Declaration of an Object in C#.NET

ClassName objectName=new ClassName();


2 Comments