I wonder, if C#.NET is managed language, why does it produce .dll file and not some .mdll or something? Or is dll compiled to native code? Would this be even possible? I mean, to have dll witj calls to managed libraries? Thanks.
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.
The library contains a header indicating that it is managed code. Also the actual machine code is produced by the JIT compiler dynamically at runtime.