What is the difference between C# and .NET?

后端 未结 10 1910
梦毁少年i
梦毁少年i 2020-12-02 04:20

May I know what is the difference between C# and .NET? When I think of C#, right away I would say it is a .NET language, but when I search for job posts, they require candid

10条回答
  •  佛祖请我去吃肉
    2020-12-02 05:13

    C# is a language, .NET is an application framework. The .NET libraries can run on the CLR and thus any language which can run on the CLR can also use the .NET libraries.

    If you are familiar with Java, this is similar... Java is a language built on top of the JVM... though any of the pre-assembled Java libraries can be used by another language built on top of the JVM.

提交回复
热议问题