Click here to Skip to main content
15,885,278 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: tool bar Pin
Giorgi Dalakishvili2-Mar-08 21:09
mentorGiorgi Dalakishvili2-Mar-08 21:09 
Questionhow to create a Project Location dialog box Pin
rose1962-Mar-08 18:48
rose1962-Mar-08 18:48 
GeneralRe: how to create a Project Location dialog box Pin
Mark Salsbery3-Mar-08 6:06
Mark Salsbery3-Mar-08 6:06 
QuestionCannot use null and how to declare return type of a function as array? [modified] Pin
Member 45422722-Mar-08 18:26
Member 45422722-Mar-08 18:26 
GeneralRe: Cannot use null and how to declare return type of a function as array? Pin
led mike3-Mar-08 4:58
led mike3-Mar-08 4:58 
GeneralRe: Cannot use null and how to declare return type of a function as array? Pin
Mark Salsbery3-Mar-08 6:04
Mark Salsbery3-Mar-08 6:04 
QuestionEXE vs LIB -- 30 times slower? Pin
s196675m29-Feb-08 15:14
s196675m29-Feb-08 15:14 
AnswerRe: EXE vs LIB -- 30 times slower? Pin
uusheikh4-Mar-08 21:18
uusheikh4-Mar-08 21:18 
Hi,
are you sure you both the lib and exe are in /clr:pure? If the exe is /clr:pure and the lib is /clr, then it is possible that the whole program runs 20-30x slower. This is because of thunking between managed and native world, data type marshalling etc. It gets even worse when many functions are called in managed world (which is usual in image processing).

What you can do is compile your c++ functions in a DLL as native, and then just call 1 function from managed C++.

I'm also doing image processing, and am interested to know more.
GeneralRe: EXE vs LIB -- 30 times slower? Pin
s196675m5-Mar-08 8:00
s196675m5-Mar-08 8:00 
GeneralSerializable And Deserialize Pin
javad_200529-Feb-08 4:17
javad_200529-Feb-08 4:17 
GeneralRe: Serializable And Deserialize Pin
Mark Salsbery29-Feb-08 6:39
Mark Salsbery29-Feb-08 6:39 
GeneralRe: Serializable And Deserialize Pin
Paul Conrad29-Feb-08 8:03
professionalPaul Conrad29-Feb-08 8:03 
GeneralRe: Serializable And Deserialize Pin
javad_20051-Mar-08 3:41
javad_20051-Mar-08 3:41 
GeneralRe: Serializable And Deserialize Pin
javad_20051-Mar-08 20:05
javad_20051-Mar-08 20:05 
GeneralRe: Serializable And Deserialize Pin
Mark Salsbery4-Mar-08 12:13
Mark Salsbery4-Mar-08 12:13 
GeneralRe: Serializable And Deserialize Pin
javad_20054-Mar-08 20:23
javad_20054-Mar-08 20:23 
GeneralRe: Serializable And Deserialize Pin
Mark Salsbery4-Mar-08 20:31
Mark Salsbery4-Mar-08 20:31 
GeneralRe: Serializable And Deserialize Pin
javad_20054-Mar-08 23:01
javad_20054-Mar-08 23:01 
GeneralRe: Serializable And Deserialize Pin
Giorgi Dalakishvili4-Mar-08 21:04
mentorGiorgi Dalakishvili4-Mar-08 21:04 
GeneralRe: Serializable And Deserialize Pin
Mark Salsbery4-Mar-08 21:07
Mark Salsbery4-Mar-08 21:07 
GeneralRe: Serializable And Deserialize Pin
Giorgi Dalakishvili4-Mar-08 21:14
mentorGiorgi Dalakishvili4-Mar-08 21:14 
GeneralRe: Serializable And Deserialize Pin
javad_20055-Mar-08 2:19
javad_20055-Mar-08 2:19 
GeneralRe: Serializable And Deserialize Pin
Giorgi Dalakishvili5-Mar-08 7:08
mentorGiorgi Dalakishvili5-Mar-08 7:08 
GeneralRe: Serializable And Deserialize Pin
javad_20055-Mar-08 21:57
javad_20055-Mar-08 21:57 
GeneralQueue Problem Pin
gman200829-Feb-08 3:28
gman200829-Feb-08 3:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.