Quick question, I’ve been reading about some .Net stuff and the way some people talk implies on me that a .Net library could be used with multiple .Net languages. Maybe it’s just wishful thinking on my part lol. For instance could I use the Tao Framework, programmed in C#, with the Boo .Net language?
The only way I could explain it is if the library is compiled to bytecode to run in .Net and can be used with any language that also compiles too. I don’t know very much about .Net though ^-^
Thanks
Any assmebly (IL code and manifest) can be used in any .NET language – it doesn’t matter what language it was written in, so long as the code is CIL compliant and conforms to the CLS (Common Language Specification).
From MSDN (CLS):