Click here to Skip to main content
15,913,055 members
Home / Discussions / C#
   

C#

 
General2 questions Pin
bouli11-Jul-04 23:37
bouli11-Jul-04 23:37 
GeneralRe: 2 questions Pin
Mike Dimmick11-Jul-04 23:56
Mike Dimmick11-Jul-04 23:56 
GeneralRe: 2 questions Pin
bouli12-Jul-04 0:25
bouli12-Jul-04 0:25 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 3:14
protectorHeath Stewart12-Jul-04 3:14 
GeneralRe: 2 questions Pin
bouli12-Jul-04 3:36
bouli12-Jul-04 3:36 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 4:02
protectorHeath Stewart12-Jul-04 4:02 
GeneralRe: 2 questions Pin
bouli12-Jul-04 4:10
bouli12-Jul-04 4:10 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 4:18
protectorHeath Stewart12-Jul-04 4:18 
GeneralRe: 2 questions Pin
bouli12-Jul-04 4:22
bouli12-Jul-04 4:22 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 4:24
protectorHeath Stewart12-Jul-04 4:24 
GeneralRe: 2 questions Pin
bouli12-Jul-04 4:44
bouli12-Jul-04 4:44 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 4:58
protectorHeath Stewart12-Jul-04 4:58 
GeneralRe: 2 questions Pin
bouli12-Jul-04 5:00
bouli12-Jul-04 5:00 
GeneralRe: 2 questions Pin
Nick Parker12-Jul-04 5:09
protectorNick Parker12-Jul-04 5:09 
GeneralRe: 2 questions Pin
bouli12-Jul-04 5:14
bouli12-Jul-04 5:14 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 5:13
protectorHeath Stewart12-Jul-04 5:13 
GeneralRe: 2 questions Pin
bouli12-Jul-04 5:16
bouli12-Jul-04 5:16 
GeneralRe: 2 questions Pin
Heath Stewart12-Jul-04 5:23
protectorHeath Stewart12-Jul-04 5:23 
GeneralRe: 2 questions Pin
bouli12-Jul-04 22:22
bouli12-Jul-04 22:22 
GeneralRe: 2 questions Pin
Heath Stewart13-Jul-04 3:01
protectorHeath Stewart13-Jul-04 3:01 
Yes, of course it's very different. .NET is referred to as a "managed environment" because the Common Language Runtime (CLR) manages memory, provides garbage collection (no explicit destruction of objects like in C/C++/MFC), and many other things.

The important thing to remember is that Windows Forms controls encapsulates the Windows APIs, so everything possible in MFC would be possible in .NET, but you have to P/Invoke native APIs (and don't P/Invoke those that are already covered in .NET APIs), define structs and consts, etc. You can't simply call native APIs like you could in MFC, unless you were to use a Managed C++ assembly in a mixed-mode compilation.

 

Microsoft MVP, Visual C#
My Articles
GeneralSNTP Client Pin
don7cry11-Jul-04 22:45
don7cry11-Jul-04 22:45 
GeneralRe: SNTP Client Pin
Dave Kreskowiak12-Jul-04 1:04
mveDave Kreskowiak12-Jul-04 1:04 
GeneralRe: SNTP Client Pin
Steven Campbell12-Jul-04 3:40
Steven Campbell12-Jul-04 3:40 
GeneralCall function from pointer Pin
joeyespo11-Jul-04 22:45
joeyespo11-Jul-04 22:45 
GeneralRe: Call function from pointer Pin
Mike Dimmick12-Jul-04 0:37
Mike Dimmick12-Jul-04 0:37 

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.