Possible Duplicate:
Difference between static class and singleton pattern?
i am not able to understabnd the difference b/w static class and singleton class.
in single ton class we make sure we cretae only one object and no more objects are created.
in a the static class also there is no need to create an object we can call the properties and methods directly using the static class name.
here both looks same so whats teh use of using creating single ton class.
any help on this would be great.