different between .net framework and visual studio .net

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.
 
J

Jerry Pisk

..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.
 
M

Mark Bellamy

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
 
L

Larry Serflaten

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top