Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are the limitations of using Unmanaged Code from within a .NET assembly?
Managed Code and Unmanaged Code related ASP.NET- What are the limitations of using Unmanaged Code from within a .NET assembly?
✍: Guest
Performance : Although native-code DLLs can perform some operations more quickly than equivalent code managed by the CLR, these benefits might be offset by the time it takes to marshal the data to pass between the unmanaged procedure and the .NET assembly.
Type safety : Unlike .NET assemblies, unmanaged procedures might not be type-safe. This can affect the reliability of your .NET application. In general, reliability is a paramount concern with ASP.NET Web applications.
Code security : Unmanaged procedures do not use the .NET Framework’s model for code security.
Versioning:Unmanaged code does not support .NET versioning; therefore, assemblies that call unmanaged procedures might lose the benefit of being able to coexist with other versions of the same assembly.
2009-04-07, 4463👍, 0💬
Popular Posts:
How will you freeze the requirement in this case? What will be your requirement satisfaction criteri...
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...
How Do I Run JUnit Tests from Command Window? To run JUnit tests from a command window, you need to ...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...
I have 5 questions please give me the answer ,explanation,suggestions if any?? what is PMP(project m...