What classes / interfaces should each .NET developer know?

I just saw an interview with Luca Bolognese from the MS team, and he mentioned that Anders Halesberg believes that developers should focus more on BCL (base class library, framework) instead of lanugage functions (C #, VB.NET).

What class or interface in the current .net 3.5 framework should every developer know?

+3
source share
10 answers

IDisposable and most System.Collections.Generic spring for the mind ...

+9
source

System.IO.Path. In fact.

+8
source

3.5 , , , : System.IO.Path (OregonGhost beat ...) System.IO.File. - Path.Combine.

EventHandler<T> .

+5

, . , ( ) .

+4

, 3.5, IQueryable.

+3

.NET 3.5, LINQ (IMHO) .

+3

System.String?

+2

System.Reflection System.Diagnostics - , , , .

+2
source

System.Object ... all your classes inherited from it.

+2
source

System.Int32

0
source

Source: https://habr.com/ru/post/1711580/


All Articles