473,799 Members | 3,229 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

managed type Mixed (/clr) or Pure (/clr:pure)

Hi,

What is the benefit of using the Pure option over the Mixed one. Is there a
better performance?

We have a lot of stuff in c++ with mfc support en we want to use in our .net
apps. With mixed setting we can compile including the mfc part of our code.
We can get rid of the mfc code but it will cost us some effort so we can use
the pure setting in that case.

If there is not much benefit then we can leave it as it is (sparing us some
couple of days of work).

Thank you in advance.

Bart
Oct 12 '06 #1
5 1463
with /pure option, you can't have unmanaged class or function.
You can't have native code but you have not to be conform CLS (you can
if you want of course).
With this mode, no MFC, no IJW ...
So, the code is faster (because no transition managed/unmanaged).

best regards,

Nico
Bart a écrit :
Hi,

What is the benefit of using the Pure option over the Mixed one. Is therea
better performance?

We have a lot of stuff in c++ with mfc support en we want to use in our .net
apps. With mixed setting we can compile including the mfc part of our code.
We can get rid of the mfc code but it will cost us some effort so we can use
the pure setting in that case.

If there is not much benefit then we can leave it as it is (sparing us some
couple of days of work).

Thank you in advance.

Bart
Oct 12 '06 #2
"Bart" <bg**@planet.nl wrote in message
news:eH******** ******@TK2MSFTN GP02.phx.gbl...
Hi,

What is the benefit of using the Pure option over the Mixed one. Is there
a better performance?
The primary benefit of using /clr:pure (or /clr:safe) is that you end up
with a verifiable assembly that can be deployed and executed in partial
trust scenarios.

You may (or may not) get some benefit by avoiding native/managed transitions
as well, but that's not really what /clr:pure is about.

-cd
Oct 12 '06 #3
Thanks Carl,

You mention the option safe but it looks like i can use some unmanaged code
which makes it not illegible for partial trusted scenario's or am i wrong?
Takes us much less effort to get to this stage of being instead of the pure
one.
"Carl Daniel [VC++ MVP]" <cp************ *************** **@mvps.org.nos pam>
wrote in message news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
"Bart" <bg**@planet.nl wrote in message
news:eH******** ******@TK2MSFTN GP02.phx.gbl...
>Hi,

What is the benefit of using the Pure option over the Mixed one. Is there
a better performance?

The primary benefit of using /clr:pure (or /clr:safe) is that you end up
with a verifiable assembly that can be deployed and executed in partial
trust scenarios.

You may (or may not) get some benefit by avoiding native/managed
transitions as well, but that's not really what /clr:pure is about.

-cd


Oct 12 '06 #4
"Bart" <bg**@planet.nl wrote in message
news:OU******** *****@TK2MSFTNG P03.phx.gbl...
Thanks Carl,

You mention the option safe but it looks like i can use some unmanaged
code which makes it not illegible for partial trusted scenario's or am i
wrong? Takes us much less effort to get to this stage of being instead of
the pure one.
If I understand correctly, /clr:safe makes the assembly verifiable, but it
will still require some elevated permissions to run. If you need to run in
the most restrictive environment, then /clr:pure is your answer.

-cd
Oct 12 '06 #5

"Carl Daniel [VC++ MVP]" <cp************ *************** **@mvps.org.nos pam>
wrote in message news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
"Bart" <bg**@planet.nl wrote in message
news:OU******** *****@TK2MSFTNG P03.phx.gbl...
>Thanks Carl,

You mention the option safe but it looks like i can use some unmanaged
code which makes it not illegible for partial trusted scenario's or am i
wrong? Takes us much less effort to get to this stage of being instead of
the pure one.

If I understand correctly, /clr:safe makes the assembly verifiable, but it
will still require some elevated permissions to run. If you need to run
in the most restrictive environment, then /clr:pure is your answer.
/clr:safe is more restrictive than /clr:pure
http://msdn2.microsoft.com/en-us/library/k8d11d4s.aspx
>
-cd


Oct 24 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1685
by: sach | last post by:
Hi, I get this error error C3181: invalid operand for __typeof, expected a fully defined managed type Whenever I try to use Enum in VC++ .NET, which is actually defined in my VC++ library (unmanaged code) Is there any way so that I can perfom "Enum::GetName" on the Enum of unmanaged code? Please suggest
7
2624
by: Gustavo L. Fabro | last post by:
Greetings! Some classes that once compiled without problems on VS 2003 have now problems on VS 2005 Beta 1. I'm talking about a __nogc class that is exported with __declspec(dllexport). The compiler message is this: VCSelectLibraryForm.cpp ...\Forms\QiForm.h(48) : error C3395: 'TQiForm::GetDotNetMouseButton' :
2
4796
by: Peter Oliphant | last post by:
I've gotten my application to compile under '/clr'. I then tried '/clr pure' and it compiled immedately with no changes. What should I consider when deciding which of these two option to compile under? Are there advantages and disadvantages to one over the other? I also tried compiling it using the '/clr safe' option and got 6420 errors (no, that's not the error number, that's the number of errors). So don't think I'll go that route just...
2
1763
by: Vedo | last post by:
The MSDN documentation says that the GetLastError function can give undefined behavior when compiling with /clr:pure switch. Does this statement apply to both C++ interop and P/Invoke? If yes, does it mean that we have to use Marshal::GetLastWin32Error to check the last error code?
1
1182
by: =?iso-8859-1?q?Horacio_Nu=F1ez_Hern=E1ndez?= | last post by:
Hi, I have been writing a wrapper with /clr:pure set, while I using the debug mode it was fine, when turned the mode to release it begins show me the same errors that when we try to use unmanaged functions whithout specify the input libs to the linker, thanks in advance, regards
10
7001
by: SQACPP | last post by:
Hi, I try to figure out how to use Callback procedure in a C++ form project The following code *work* perfectly on a console project #include "Windows.h" BOOL CALLBACK MyEnumWindowsProc(HWND hwnd, LPARAM lparam) {
13
3655
by: =?Utf-8?B?d3BjbWFtZQ==?= | last post by:
I have a small C++/CLI application which calls an unmanaged lib. It seems like I can't use /clr:pure and link with the unmanaged lib (LNK1313 error). The problem I have is that compiling with /clr adds a dependency on several msvc*.dll:s which adds some unwanted complexity to the installation. Is it possible to avoid the msvc*.dll dependency without explicit p/invoke?
0
1591
by: gwe123 | last post by:
The problem is that in C++ windows Forms uses the /clr:pure in it compile. When one add the "ATL" namespace and includes it will compile but at runtime it die's bigtime. How does one retrieve information from the string table without using ATL?????
1
2253
by: neliomourato | last post by:
hi all. I was creating a program in c++ and have to use various libraries. the problem was that some libraries need the clr and one of them unfortunately need clr\pure. I want to know if is possible to use the both (clr and pure) in the same program? if yes, how i do it? i have to said that my level of programming is weak (basic).
0
9687
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10251
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10225
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10027
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7564
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4139
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.