I have doubts on static class and static methods. From MSDN I understood that "Static classes and class members are used to create data and functions that can be accessed without creating an instance of the class."
So if we don't want to associate a class over an instance , we will make it as static. Is that the only advantage? Can anyone guide me in which real time scenario we go for static class.
Some time in classes(not static) I am finding static methods. What advantage/perfomance advantage do static methods give over instance methods in practical.