I don't think there is a good way to do this...
but I have a vb.Net DLL which has an error handling method. Its good, and I want to use it in my C#.Net site.
So I add the vb.Net DLL to my C# project.
But wait! My vb.Net error handler method requires a 'Microsoft.VisualBasic.ErrObject' !
Hmm.. is it possible to create such a data type in C#? Even by some type of conversion?
Or is this just ugly and should I forget about even trying something so outrageous and just restart the project in vb.Net?
*note that I am not going to change the required data type in the DLL
Thanks!
