ARTICLE AD BOX
Where to put common code to be used by multiple WPF apps?
For example, I have some Converter classes that I use in some WPF apps. As of now, I create a Converters folder in each WPF project, and copy-paste those classes in every project. Then in each project, I include those converters in xaml (for example in App.xaml, etc.).
Should I just create a normal Class Library to put those classes, or should I create a different project type (I can see there are several project types related to WPF but I don't really understand their use: WPF Control Library, WPF Custom Control Library, WPF User Control Library...)?
