Monday, 9 October 2017

What is the difference between C# and .NET?

.NET is an umbrella term which comprises of FCL (Framework Class Library) and many languages(C#, VB.NET, C++/CLI,...),  which compiles source code and outputs IL (Intermediate Language). IL will be consumed by CLR (Common Language Runtime) and converts it into platform specific code during runtime by the JIT (just-in-time) compiler.

C# is a programming language using which you can develop software utilizing the FCL and can target many platforms (Windows, Linux - using Mono, iOS - using Xamarin, ...)

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...