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

Managed C++/CLI

 
AnswerRe: STL Pin
Christian Graus27-Jun-07 11:32
protectorChristian Graus27-Jun-07 11:32 
QuestionTextbox Difficult Pin
mikobi27-Jun-07 3:54
mikobi27-Jun-07 3:54 
AnswerRe: Textbox Difficult Pin
Christian Graus27-Jun-07 12:20
protectorChristian Graus27-Jun-07 12:20 
GeneralRe: Textbox Difficult Pin
mikobi27-Jun-07 21:04
mikobi27-Jun-07 21:04 
GeneralRe: Textbox Difficult Pin
mikobi28-Jun-07 22:02
mikobi28-Jun-07 22:02 
GeneralRe: Textbox Difficult Pin
mikobi3-Jul-07 6:42
mikobi3-Jul-07 6:42 
Questiondeterministic cleanup in C++/CLI Pin
rockonedge26-Jun-07 21:48
rockonedge26-Jun-07 21:48 
AnswerRe: deterministic cleanup in C++/CLI Pin
Geo Pa27-Jun-07 3:52
Geo Pa27-Jun-07 3:52 
You can use implicitly dereferenced variables. These variables use the Resource Acquistion Is Initialization (RAII) principle to do their clean up. Also, these variables have the same limiitations as automatic variables:
StreamWriter f(L"D:\\listfile.txt");
f.Write(L"begin");
...
// When "f" goes out of scope, it will be deterministically disposed of.

In order to obtain a tracking handle to an implicitly dereferenced variable, you must prefix it with "%".
Questionbyte C# to C++ Pin
C#Coudou26-Jun-07 19:22
C#Coudou26-Jun-07 19:22 
AnswerRe: byte C# to C++ Pin
C#Coudou26-Jun-07 19:39
C#Coudou26-Jun-07 19:39 
QuestionNetwork speed detection Pin
C#Coudou26-Jun-07 18:36
C#Coudou26-Jun-07 18:36 
AnswerRe: Network speed detection Pin
Paul Conrad14-Jul-07 13:41
professionalPaul Conrad14-Jul-07 13:41 
QuestionConnectionString Pin
mikobi26-Jun-07 4:53
mikobi26-Jun-07 4:53 
AnswerRe: ConnectionString Pin
led mike26-Jun-07 5:26
led mike26-Jun-07 5:26 
AnswerRe: ConnectionString Pin
Mark Salsbery26-Jun-07 5:55
Mark Salsbery26-Jun-07 5:55 
GeneralRe: ConnectionString Pin
mikobi27-Jun-07 5:37
mikobi27-Jun-07 5:37 
GeneralRe: ConnectionString Pin
Mark Salsbery27-Jun-07 6:35
Mark Salsbery27-Jun-07 6:35 
GeneralRe: ConnectionString Pin
mikobi27-Jun-07 21:06
mikobi27-Jun-07 21:06 
QuestionQuery with parameters Pin
mikobi26-Jun-07 3:36
mikobi26-Jun-07 3:36 
AnswerRe: Query with parameters Pin
mikobi27-Jun-07 5:34
mikobi27-Jun-07 5:34 
QuestionMVPs Pin
vibindia25-Jun-07 18:11
vibindia25-Jun-07 18:11 
AnswerRe: MVPs Pin
Giorgi Dalakishvili25-Jun-07 20:35
mentorGiorgi Dalakishvili25-Jun-07 20:35 
AnswerRe: MVPs Pin
Mark Salsbery25-Jun-07 20:45
Mark Salsbery25-Jun-07 20:45 
QuestionImage GDI+ from a buffer Pin
Ahmed_Barakat25-Jun-07 5:56
Ahmed_Barakat25-Jun-07 5:56 
AnswerRe: Image GDI+ from a buffer Pin
led mike25-Jun-07 6:04
led mike25-Jun-07 6:04 

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.