I have a general question...when should i be using static classes or static methods?.. I know the idea that static methods can be called without instantiating...and static c
I think the following two links offer a clear answer for what you're looking for. Take a look at them:
For static classes:
When to Use Static Classes in C#
For static methods:
When is it appropriate to use static methods? ( Jon Skeet [the Guru] answered this one :o) )