How to decide between C# static and non-static methods? So say I have a class Polygon, and want to calculate various (many!) things about it (centre of mass, distance to another polygon, etc). Where should these methods live? If I have a different class for each type of calculation, doesn't it make eg discoverability via IntelliSense very difficult?