转战C#_001

---------------尽量用最少的语言描述 C# 世界里的所有事物-------------------

1. C#(pronounced "C-sharp") is an OOP language from Microsoft that aims to combine the computing power of C++ with the programming ease of VB.

2. .NET is the framework/libraries that the language is built on.

3. The .NET libraries can run on the CLR and thus any language which can run on the CLR can also use the .NET libraries.

4. The Common Language Runtime(CLR) which is the runtime in which .NET assemblies are run.

5. .NET languages come in different flavours such as: C#.NET, VB.NET, Managed C++,F#.

6. .NET languages compile to CIL(Common Intermediate Language) which means they all start "talking" the same language and can therefore interoperate.

7. ASP.NET is the portion of the .NET library used for making web sites.

8. There are other subsections of ASP.NET like Web-Forms(the old way of making web pages) or rapidly maturing MVC library that are worth looking at too.

9.

 

你可能感兴趣的:(转战C#_001)