I have a few utility methods that are used on almost every page and in other classes throught my application (eg – IsValidEmailAddress, IsAlphaNumeric, etc). Should these be in their own namespace (eg – site.common) or just left global where I don’t have to add the using to every page?
Share
Common practice is to put them in their own namespace and then include the
using