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

Managed C++/CLI

 
AnswerRe: newbie: value-type -vs- reference type Pin
George L. Jackson13-Sep-07 0:19
George L. Jackson13-Sep-07 0:19 
GeneralRe: newbie: value-type -vs- reference type [modified] Pin
devvvy13-Sep-07 16:09
devvvy13-Sep-07 16:09 
GeneralRe: newbie: value-type -vs- reference type [modified] Pin
George L. Jackson13-Sep-07 23:58
George L. Jackson13-Sep-07 23:58 
QuestionHttp Request Pin
devvvy12-Sep-07 22:49
devvvy12-Sep-07 22:49 
AnswerRe: Http Request Pin
led mike13-Sep-07 4:22
led mike13-Sep-07 4:22 
QuestionHi I want to know how to distinguish two mouse signal. Pin
Charles of Korea12-Sep-07 15:49
Charles of Korea12-Sep-07 15:49 
AnswerRe: Hi I want to know how to distinguish two mouse signal. Pin
Christian Graus12-Sep-07 15:57
protectorChristian Graus12-Sep-07 15:57 
GeneralRe: Hi I want to know how to distinguish two mouse signal. Pin
Charles of Korea12-Sep-07 16:38
Charles of Korea12-Sep-07 16:38 
AnswerRe: Hi I want to know how to distinguish two mouse signal. Pin
ghle13-Sep-07 8:05
ghle13-Sep-07 8:05 
QuestionMessage Removed Pin
12-Sep-07 11:07
Armond Sarkisian12-Sep-07 11:07 
AnswerRe: C++ FTP Functions Pin
Mark Salsbery12-Sep-07 11:15
Mark Salsbery12-Sep-07 11:15 
GeneralMessage Removed Pin
12-Sep-07 12:52
Armond Sarkisian12-Sep-07 12:52 
GeneralMessage Removed Pin
12-Sep-07 13:24
Armond Sarkisian12-Sep-07 13:24 
GeneralRe: C++ FTP Functions Pin
Mark Salsbery12-Sep-07 14:01
Mark Salsbery12-Sep-07 14:01 
GeneralRe: C++ FTP Functions Pin
Mark Salsbery12-Sep-07 13:56
Mark Salsbery12-Sep-07 13:56 
GeneralMessage Removed Pin
12-Sep-07 15:23
Armond Sarkisian12-Sep-07 15:23 
GeneralRe: C++ FTP Functions Pin
Mark Salsbery12-Sep-07 16:46
Mark Salsbery12-Sep-07 16:46 
GeneralMessage Removed Pin
13-Sep-07 7:57
Armond Sarkisian13-Sep-07 7:57 
GeneralRe: C++ FTP Functions Pin
Mark Salsbery13-Sep-07 8:12
Mark Salsbery13-Sep-07 8:12 
GeneralMessage Removed Pin
13-Sep-07 8:18
Armond Sarkisian13-Sep-07 8:18 
GeneralRe: C++ FTP Functions Pin
Mark Salsbery13-Sep-07 8:32
Mark Salsbery13-Sep-07 8:32 
GeneralMessage Removed Pin
13-Sep-07 8:39
Armond Sarkisian13-Sep-07 8:39 
GeneralRe: C++ FTP Functions Pin
Mark Salsbery13-Sep-07 8:52
Mark Salsbery13-Sep-07 8:52 
Question[Message Deleted] Pin
Herboren11-Sep-07 14:16
Herboren11-Sep-07 14:16 
AnswerRe: Understanding pointers Pin
George L. Jackson11-Sep-07 17:52
George L. Jackson11-Sep-07 17:52 
int* ptr; and int *ptr; mean the same. It's just a difference in coding style.

Dynamic "memory" allocation deals with your code asking the operation system to reserve memory for your variable. The memory remains reserved for your variable until your code explicitly ask the operating system to unreserve the memory. You have a memory leak if you fail to unreserve your variable's allocated memory before your application stops executing your code.

Please ask C++ questions in the C++ forum.

"We make a living by what we get, we make a life by what we give." --Winston Churchill

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.