Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to learn the .NET Framework [closed]

Tags:

.net

Considering the fact that .net is a massive collection of classes, structs, interfaces, methods etc what would be the correct and appropriate approach to get started with and understand the fundamentals of the framework.

Bearing in mind the two facts that there is no substitute for experience and that there is no limit to learning.

Many Thanks.

like image 640
Anand Shah Avatar asked Mar 28 '09 08:03

Anand Shah


People also ask

How long does it take to learn .NET framework?

NET—such as C#, F#, or Visual Basic—it will take you two to three months to learn to use this platform professionally.

Is .NET difficult to learn?

Everything is C# and has the same or similar code. Dot net is a user friendly and its very easy to learn .. I recommend to start with java because it is a strong and professional language and relatively simple compared to C + +.

Is .NET framework ending?

. NET Framework 4.5. 2, 4.6, and 4.61 retired on April 26, 2022. These specific releases were previously signed using Secure Hash Algorithm (SHA-1) certificates.


1 Answers

Start off by picking one of the .Net languages to learn. I would personally go for C# as being the mainstay of .Net development. Then just go and code something, like problems from Project Euler.

Once you've mastered the basics of the language (like the data types, language constructs and so forth) then it is an appropriate time to start learning one or more of the .Net frameworks. Here you just pick whatever you're interested in, be it WPF for desktop development, ASP.NET/ASP.NET MVC for Web development, WCF, etc.

Language first, libraries second.

like image 106
cletus Avatar answered Sep 19 '22 06:09

cletus