Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
AnswerRe: VS.NET rebuilds solution constantly? Pin
Colin Angus Mackay8-Dec-03 1:37
Colin Angus Mackay8-Dec-03 1:37 
AnswerRe: VS.NET rebuilds solution constantly? Pin
Heath Stewart8-Dec-03 2:41
protectorHeath Stewart8-Dec-03 2:41 
GeneralRe: VS.NET rebuilds solution constantly? Pin
phimix8-Dec-03 21:59
phimix8-Dec-03 21:59 
AnswerRe: VS.NET rebuilds solution constantly? Pin
Mauricio Ritter8-Dec-03 4:02
Mauricio Ritter8-Dec-03 4:02 
GeneralRe: VS.NET rebuilds solution constantly? Pin
phimix8-Dec-03 4:43
phimix8-Dec-03 4:43 
QuestionWhy C# instead of C++ and MFC? Pin
d00_ape7-Dec-03 22:08
sussd00_ape7-Dec-03 22:08 
AnswerRe: Why C# instead of C++ and MFC? Pin
Colin Angus Mackay8-Dec-03 1:31
Colin Angus Mackay8-Dec-03 1:31 
AnswerRe: Why C# instead of C++ and MFC? Pin
Heath Stewart8-Dec-03 2:37
protectorHeath Stewart8-Dec-03 2:37 
Note that the two things aren't the same, though. MFC requires one DLL (MFCXX.DLL) to run and uses native DLLs for everything else. C++ just requires whatever DLLs you're calling entry points into.

C# is a managed languages that targets the Common Language Runtime (CLR) and is one of many languages for the .NET Framework which - like the Java Runtime Environment (JRE) - is required to run applications written in that language.

Also, C# - and all languages targeting the CLR - compile to MSIL (Microsoft Intermediate Language, an extension to the standard Intermediate Language), which gets Just-in-time compiled (JIT'd, it can also be ngen'd to pre-JIT an assembly in the Global Assembly Cache) and executed.

So, if you build applications for .NET, the .NET Framework must be installed. Take this as a drawback or bonus. It's called managed code because the CLR manages all memory and bounds-checking.

The best thing you could do to evaluate .NET is to read the .NET Framework SDK documentation which - if you did a full install on the VS.NET studio - is in your help. There's many articles talking about the differences, the class library, and lots of other topics. Like everything, the only way to truly learn (and develop, vs. just writing code) is to read and try it out.

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralRe: Why C# instead of C++ and MFC? Pin
d00_ape8-Dec-03 11:43
sussd00_ape8-Dec-03 11:43 
GeneralWeb Service hosted on Win2003 with Sharepoint 2003 Pin
Pilgrim7-Dec-03 21:29
Pilgrim7-Dec-03 21:29 
GeneralRe: Web Service hosted on Win2003 with Sharepoint 2003 Pin
Heath Stewart8-Dec-03 2:31
protectorHeath Stewart8-Dec-03 2:31 
QuestionDistribute MSDE with your C# Application? Pin
Dato7-Dec-03 21:00
Dato7-Dec-03 21:00 
AnswerRe: Distribute MSDE with your C# Application? Pin
Heath Stewart8-Dec-03 2:27
protectorHeath Stewart8-Dec-03 2:27 
GeneralC# New Project Dialog Box Pin
Member 7525907-Dec-03 12:48
Member 7525907-Dec-03 12:48 
GeneralRe: C# New Project Dialog Box Pin
Heath Stewart8-Dec-03 2:24
protectorHeath Stewart8-Dec-03 2:24 
GeneralRe: C# New Project Dialog Box Pin
Member 7525908-Dec-03 9:21
Member 7525908-Dec-03 9:21 
GeneralHTML FORMULAR Pin
buzman7-Dec-03 2:12
buzman7-Dec-03 2:12 
GeneralRe: HTML FORMULAR Pin
Heath Stewart7-Dec-03 4:48
protectorHeath Stewart7-Dec-03 4:48 
GeneralRe: HTML FORMULAR Pin
Alexander Kent7-Dec-03 16:28
Alexander Kent7-Dec-03 16:28 
QuestionHow can I remove all references to an object? Pin
bzurer7-Dec-03 1:57
bzurer7-Dec-03 1:57 
AnswerRe: How can I remove all references to an object? Pin
Heath Stewart7-Dec-03 4:43
protectorHeath Stewart7-Dec-03 4:43 
GeneralRe: How can I remove all references to an object? Pin
bzurer7-Dec-03 5:16
bzurer7-Dec-03 5:16 
GeneralRe: How can I remove all references to an object? Pin
Heath Stewart7-Dec-03 10:18
protectorHeath Stewart7-Dec-03 10:18 
GeneralRe: How can I remove all references to an object? Pin
Paul Evans8-Dec-03 6:55
Paul Evans8-Dec-03 6:55 
GeneralRe: How can I remove all references to an object? Pin
bzurer8-Dec-03 7:24
bzurer8-Dec-03 7:24 

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.