Recent comments

Internet Articles

What is C#?

 


C#(CSharp) was started to be developed by Andreas Heljsberg et al in 2000 and it is a programming language that was released as C# 1.0 in 2002. C# has continued to be developed with the support of Windows since its release. 5.0 has been updated in the 10 years after its initial release and is considered middle class. C# has received full marks from software developers, especially for its compatibility with modern systems. Just as a higher version of the C language is C++, ((C++)++) ie C# (inspired by the symbol (#) that resembles a combination of 4 + signs) is also a higher version of C++. C# is an object-oriented programming language developed for the .NET platform.



It needs C# .NET Framework. Because C# compiles codes in two stages. These compilations are called MIL (Microsoft Intermediate Language) compilations. The first stage is Assembly and the second stage is .EXE. However, our codes are not run by systems while they are in this state, so we need .NET Framework. NET Framework, which was also developed by Microsoft, recompiles our code compiled as MIL and makes it readable by computers.

Because C# is an easy and modern language, it allows us to code anything we imagine. The main examples of these are;

  • Web form applications (Asp.NET)
  • Mobile apps 
  • Web services applications 
  • Console apps 
  • DLL Dev 
  • Game development
  • Custom Components



No comments