Is there a way to determine the language in which an assembly was originally written? I was considering looking at the referenced assemblies or something similar but wondered if it’s as simple as a specific assembly attribute or such…
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no specific attribute. Just hints. If you see an assembly reference to Microsoft.VisualBasic then the odds are high that it was written in VB.NET. If you see a
<CppImplementationDetails>class then it was written in C++/CLI. Absence of these hints makes C# likely. Ignoring the possibilities of a Mono assembly or the dozens of language ports to .NET