Why we should learn c# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Why we should learn c#

In which sector we need c# codes?

23rd Aug 2017, 1:18 AM
Md.Shajib Sharir
Md.Shajib Sharir - avatar
2 Answers
+ 3
Here are some applications to name a few:- Games (Unity) Web app (Web Forms, MVC) Dekstop app (WinForm, WPF) Mobile app (Xamarin) Web service (WebApi, WCF)
23rd Aug 2017, 2:43 AM
Zephyr Koo
Zephyr Koo - avatar
+ 2
C# is just a language targeting CLR. thus,I think the advantages mainly result from .net framework. I have little knowledge of Java, but compared with C++. C# has the following features: 1. C# is pure object-oriented,but C++ is a mixture of object-oriented and procedure-oriented. 2. C# is more type safe 3. you need not put much attention on such problems as memory leak, which is troubling problem for C++ programmer. 4. The Assembly concept solves the versioning control problem well. 5.Ease-to-development, The rich class library makes many functions easy to be implemented. 6.Cross-platform. you application will run well only if the machine installed the .NET framework. 7.Good support for distributed system.   There are much more features, you can experience during development. However, each language has its advantage, you can select language depending on you application.
23rd Aug 2017, 2:36 AM
Harsh Kumar
Harsh Kumar - avatar