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

What is caching in asp.net?

0 Answers  


What is the result when the Web Form containing the following line is complied and executed? <asp:Button id=?thebutton? onClick=?theEvent? /> a) The button control is created; theEvent is the click event handler. b) Compiler error; the control must be set to runat=?server?. c) Compiler error; onClick is not a valid attribute. d) Runtime Exception; the control must be set to runat=?server?.

3 Answers   Syntax Softtech,


What is the maximum timeout we can set for Cookies?

0 Answers  


Can you edit data in the Repeater control?

11 Answers   CAC, Creative,


What are different types of authentication techniques that are used in connection strings to connect .net applications with microsoft sql server?

0 Answers  






How to kill session?

18 Answers   Protech,


What is Cookies Less Session?

0 Answers  


What is the significance of finalize method in .net?

0 Answers  


Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal

0 Answers  


Explain about asp.net state management?

0 Answers  


What is the Global.asax used for?

7 Answers   Siebel Systems,


What is the difference between custom web user control and a custom web server control?

0 Answers  


Categories