Can you give me some pointers on making C# code and Java code interoperate? Let's define the interoperation as something simple: allow (from Java code) the instantiantion and method calling of a class defined in C#, and, possibly, the other way around as well.
Is this even possible natively? (i.e. without some proxy/skeleton interface mechanism)
And finally, what proxy mechanisms can be used? (i.e. are supported by both language realms)