Class :  Class is an virtual entity or a template. Virtual Entity means no memory is created in RAM.

Object : Object is an instance of a class or Object is an physical entity since it occupies some kind of memory when the object is created.
Eg : A a = new A(); Here A refers to a class name.

Strings : String is an character array which are Reference Types in C#. Strings are immutable. Methods that act on strings always produce a new string.

Comments

Popular posts from this blog

Android - Using KeyStore to encrypt and decrypt the data

Stack and Queue

Java Reflection API