I would like to use other languages such as C, C++, JAVA.
I heard that .NET Framework support CLR(Common Language Runtime).
But I don't know how to use languages.
And I have a another question.
If I use other languages, How I load assembly files in my C# class.
Loading

Jignesh TrivediPosted Sep 9, 2013, 12:35 AM
hi,
.net compiler provide the CLR functionality that enable us to write code that benifits from the managed execution env. code that we create with language compiler that target runtime is called managed code, it advantages from features such as cross language integration and execution. Launguages supported by CLR are VB.net, C++, C#,JScript,J#.
I thing java is not directly supported by .net framework you must convert you java application to J#.
please refer
http://msdn.microsoft.com/en-us/library/ms973842.aspx
If you use any .net supported language then it can be used in c# application by making it cls compliant
http://msdn.microsoft.com/en-IN/library/bhc3fa7f(v=vs.90).aspx
hope this will help you.