Differentiate between instance data and class data - C#.NET
Differentiate between instance data and class data Class data in terms of static class is the data that particular class holds in its structure. Instances can refer to different objects of the same class that hold different values using the same class structure in memory heap.
|
Significance of static method - C#.NETExplain the significance of static method - Static methods are used when we want only one copy of that method to perform action and remain active at a single point in time...