I'm looking to employ more code re-use in my CSI development. How does an IDO Extension Class (IEC) handle additional 3rd party library references? In this situation, I'm looking to create a BarTender library that handles all of the creation/etc of our bar codes. There are two was I can see to accomplish this:
- Create the library class, but instead of linking in a DLL, include the C# .cs file as part of the project. This way, the library gets completely built inside my IEC.
- Create/compile the library as a DLL and then link the DLL as needed into projects.
Thanks!