Frequent Functions: How to Structure?

Posted by cam on Stack Overflow See other posts from Stack Overflow or by cam
Published on 2010-04-24T11:31:13Z Indexed on 2010/04/24 11:33 UTC
Read the original article Hit count: 140

Filed under:

How should one structure their frequently used non-important functions (conversions, etc) in C# since everything must be contained in an object? Usually I take all these functions and put them in a static Utility class. Is this a good practice? How do most developers do it?

© Stack Overflow or respective owner

Related posts about c#