Click here to Skip to main content
16,005,552 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Wrapper class Pin
Russell'14-Apr-07 3:23
Russell'14-Apr-07 3:23 
GeneralRe: Wrapper class Pin
Nish Nishant14-Apr-07 3:38
sitebuilderNish Nishant14-Apr-07 3:38 
GeneralRe: Wrapper class Pin
Russell'14-Apr-07 21:22
Russell'14-Apr-07 21:22 
GeneralRe: Wrapper class Pin
George L. Jackson15-Apr-07 1:28
George L. Jackson15-Apr-07 1:28 
QuestionHow to debug managed code called from unmanaged? Pin
mmfranke13-Apr-07 3:38
mmfranke13-Apr-07 3:38 
AnswerRe: How to debug managed code called from unmanaged? Pin
mmfranke13-Apr-07 9:13
mmfranke13-Apr-07 9:13 
GeneralRe: How to debug managed code called from unmanaged? Pin
Nish Nishant14-Apr-07 1:48
sitebuilderNish Nishant14-Apr-07 1:48 
Questionproperty declaration in Interface Class Pin
The Van Dao13-Apr-07 3:23
The Van Dao13-Apr-07 3:23 
I'm having a discussion with my collueage regarding the correct coding style for
declaration of property in Interface Class, and we disagree with each other.

Can Somebody give some input to out discussion?

Which below code has a best coding style??
The difference between ex1 and ex2 is that get() and set() functions
of property Counter are explicitely declared in ex2, evenif it is
not necessary to do so in CLI.

ex1:
public Interface Class MyClass{
public:
property int Counter;
};

ex2:
public Interface Class MyClass{
public:
property int Counter
{
int get();
void set(int value);
}
};

/The Van Dao
AnswerRe: property declaration in Interface Class [modified] Pin
George L. Jackson13-Apr-07 6:17
George L. Jackson13-Apr-07 6:17 
QuestionVisual Studio 2005 step into does not work Pin
BuckBrown12-Apr-07 6:29
BuckBrown12-Apr-07 6:29 
AnswerRe: Visual Studio 2005 step into does not work Pin
Christian Graus12-Apr-07 13:45
protectorChristian Graus12-Apr-07 13:45 
AnswerRe: Visual Studio 2005 step into does not work Pin
User 58385212-Apr-07 14:12
User 58385212-Apr-07 14:12 
Questiondoubt Pin
Sebastian T Xavier11-Apr-07 20:25
Sebastian T Xavier11-Apr-07 20:25 
AnswerRe: doubt Pin
Nish Nishant12-Apr-07 4:11
sitebuilderNish Nishant12-Apr-07 4:11 
GeneralRe: doubt Pin
George L. Jackson12-Apr-07 9:26
George L. Jackson12-Apr-07 9:26 
AnswerRe: doubt Pin
sthotakura12-Apr-07 13:13
sthotakura12-Apr-07 13:13 
GeneralRe: doubt Pin
Sebastian T Xavier12-Apr-07 20:36
Sebastian T Xavier12-Apr-07 20:36 
QuestionUnmanaged/Managed C++ bridge help? Pin
David Knechtges10-Apr-07 7:21
David Knechtges10-Apr-07 7:21 
AnswerRe: Unmanaged/Managed C++ bridge help? Pin
led mike10-Apr-07 7:37
led mike10-Apr-07 7:37 
GeneralRe: Unmanaged/Managed C++ bridge help? Pin
David Knechtges10-Apr-07 7:43
David Knechtges10-Apr-07 7:43 
GeneralRe: Unmanaged/Managed C++ bridge help? Pin
led mike10-Apr-07 8:50
led mike10-Apr-07 8:50 
QuestionSocket Programming Help Pin
himuskanhere9-Apr-07 18:45
himuskanhere9-Apr-07 18:45 
AnswerRe: Socket Programming Help Pin
morzetta9-Apr-07 22:05
morzetta9-Apr-07 22:05 
AnswerRe: Socket Programming Help Pin
led mike10-Apr-07 4:35
led mike10-Apr-07 4:35 
QuestionHelp Pin
El'Cachubrey9-Apr-07 1:31
El'Cachubrey9-Apr-07 1:31 

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.