R
Robson
I have an interface (call it IImagingAlgorithm). I want a user to be able
to create their own IImagingAlgorithm classes and add them into my
framework. So, I'm guessing I will have a directory to search for .DLL's
(or something), loading each one and attempting to instantiate each object,
using the IImagingAlgorithm inteface on each one.
My question is, what is the best way to do this? Shall I just put each
IImagingAlgorithm class into a .DLL and manually load them? If so, how do I
do this?
Thanks.
to create their own IImagingAlgorithm classes and add them into my
framework. So, I'm guessing I will have a directory to search for .DLL's
(or something), loading each one and attempting to instantiate each object,
using the IImagingAlgorithm inteface on each one.
My question is, what is the best way to do this? Shall I just put each
IImagingAlgorithm class into a .DLL and manually load them? If so, how do I
do this?
Thanks.