.net basics

kumarangopi

Member
Joined
Apr 12, 2008
Messages
14
Programming Experience
Beginner
1.Languages in .Net like vb.net,c#.asp.net when compiled produce MSIL.CLR converts this MSIL to native code or machine code.

Am I understanding correct?How CTS and CLS come in this picture?


2.When I make a website using asp.net.Should I deploy it in windows based server only?Should .net be installed on that server or not necesssary?Iam thinking whether .net can be installed on unix system or it can be installed in windows system only,is it plaftform dependent?

3.What are the basic components of .Net framework?

Anyone show some light on .net basics.I have gone through websites but need your lines

Thanks in advance
 
What is .NET Framework and what are CLR, CTS and CLS?

.Net Framework only runs on Windows OS, it must be installed to execute .Net code. Mono Framework is a comparable .Net library for Linux systems.

The image below is from the Wiki page about .Net Framework and display the main parts of the library:

513px-DotNet_svg.png
 
Back
Top