When you write an app that will have vast number of classes, do you use prefixes/suffixes for your class names? Or should I just rely on the namespaces I already define?
In my case, I have classes like:
Blur Contrast Sharpen Invert ...
I just don’t know what I might have tomorrow, and want to be collision free as possible with the frequent used classes in the BCL.
Any ideas?
Namespaces were invented exactly to solve this problem. Use them.