Tuesday, July 8, 2008

What is a Static Class?

A static class is functionally the same as creating a class with a private static constructor. An instance of the class can never be created. By using the static keyword, the compiler can help by checking that instance members are never accidentally added to the class.

ref: http://www.aspdotnetfaqs.com/

No comments: