What constructs should I use to create a shared object in C# which can be used in some other third party software or program?
Example:
My program reads a abc.xml and I need to share data read from this file. I have another perl script which needs to read this shared data and hence I want to know what would be best approach for such scenarios.
Thanks.