What is class?

1) Class is construct which enables you to create your own custom types of by grouping the variables of other type, methods, and events.
2) Is Blueprint which defines data and the behavior of a type.
3) If class is not static you can use it by creating object or instance which are assigned to a variable, this variable remains in memory until all references to it go out of scope.Then this variable eligible for clr garbage collection.




Comments