How is a managed code executed?
Execute a Managed code by following these steps:
•Choosing a language compiler depending on the language in which the code is written.
•Converting the above code into Intermediate language by its own compiler.
•The IL is then targeted to CLR which converts the code into native code with the help of JIT.
•Execution of Native code.
Is This Answer Correct ? | 0 Yes | 0 No |
Explain why do we use msmq?
questions on various scenarios on exception handling? like for example.... try { a; b; ...exception occurs here...what happens...will catch execute or will finally execute...will c execute c; } catch { a; b; c; } fianlly { a; b; }
How can you automatically generate interface for the remotable object in .NET with Microsoft tools?
Show different types of collection in .NET?
Should I use readerwriterlock instead of monitor.enter/exit?
When we use windows api in .net is it managed or unmanaged code?
What is model-view -controller Architecture?
What is managed code in .NET?
How do you define the lease of the object in .net?
Hi, Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Got Exception in "try" block. Which "catch" throws exception and Why??? Please provide the answer in detail.. Thanks for the help!!!
Explain how do assemblies find each other?
Difference between class and interface in .net?