How to write unmanaged code and how to identify whether the
code is managed /unmanaged?

Answers were Sorted based on User's Feedback



How to write unmanaged code and how to identify whether the code is managed /unmanaged?..

Answer / srikanth

All the components that are developed using the languages
that are not supported by the CLS are called unmanaged code
that means which is not viable to run under the CLR. All
the COM components are unmanaged and all the ASSEMBLIES are
managed. We can even run the unmanged code components in
the CLR using ComCallableWrapper class.

Is This Answer Correct ?    17 Yes 3 No

How to write unmanaged code and how to identify whether the code is managed /unmanaged?..

Answer / banu

Using
unsafe
{
//unmanaged code;
}

Is This Answer Correct ?    7 Yes 0 No

How to write unmanaged code and how to identify whether the code is managed /unmanaged?..

Answer / shashikesh

unmanaged code is not varify by clr,and clr is not varify
third party control and pointer.

Is This Answer Correct ?    8 Yes 3 No

How to write unmanaged code and how to identify whether the code is managed /unmanaged?..

Answer / sudhir kunnure

Unmanaged code use like using dll or any other com object
in application then it is unmanaged code ,we cannot change
the code.

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More ASP.NET Interview Questions

Explain how can we access static variable?

0 Answers  


Difference between ByVal and ByRef?

2 Answers   Microsoft,


how to pass session value one url to another url.my code if session("user")="abc" then response.redirect("www.abc.com\client\home.aspx") end if. so how to pass value of session in browser url

1 Answers  


What are user controls and custom controls ?

1 Answers  


Define session in asp.net.

0 Answers  






Can you store dataset in viewstate?

7 Answers   Microsoft,


Write code to send e-mail from an asp.net application?

0 Answers  


How to store a dataset in a viewstate?

3 Answers   IBM,


What is the difference between User Controls and Master Pages

22 Answers   Deloitte, IBM, IntraLogic, Markit, TCS,


What tags do you need to add within the asp:datagrid tags to bind columns manually? How?

0 Answers  


When would you not use the oleDbConnection object? a) To connect to an SQL 7.0 database. b) To connect to a DB/2 database. c) To connect to an Access database. d) To connect to an SQL 6.5 database.

6 Answers   Syntax Softtech,


What is the difference between and ActiveX dll and control?

2 Answers   Microsoft,


Categories