different between .net framework and visual studio .net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

can anyone tell me what id difference between .net framework and visual studio .net I am totally new to this field so just wanted to clear my concept.
 
..Net framework is what runs .net code. Visual Studio.Net is an IDE that can
be used to create .Net code among others.

Jerry

sanjay said:
can anyone tell me what id difference between .net framework and visual
studio .net I am totally new to this field so just wanted to clear my
concept.
 
As I understand it, the .NET framework is the rich class-library provided by
MS, and the CLR (Common Language Runtime) is what actually "runs the code".

Mark Bellamy
 
sanjay said:
can anyone tell me what id difference between .net framework and visual studio .net I am totally new to this field so just
wanted to clear my concept.

To condense it to over simplified terms, the .NET framework is the new language
and Visual Studio is the wiz bang wysiwyg editor for that language.

To add more detail, the framework is the execution environment, the part that
runs your code and provides the common ground for all .NET languages. Visual Studio
is an editor that allows you to design, debug, and compile different languages
into MSIL, the framework's Intermediate Languge.

LFS
 
Back
Top