What are some .Net framework classes / interfaces that every developer should know?
-
I'm learning C# and ASP.Net Core from JavaScript and Node.js. I notice that many classes like
IEnumerable
and
IDisposable
Are used a lot and seem like you should be familiar with them. What are some other classes and interfaces that pop up often in .Net programming I should be aware of?
i cri evry tiem
-
I'm learning C# and ASP.Net Core from JavaScript and Node.js. I notice that many classes like
IEnumerable
and
IDisposable
Are used a lot and seem like you should be familiar with them. What are some other classes and interfaces that pop up often in .Net programming I should be aware of?
i cri evry tiem
-
I'm learning C# and ASP.Net Core from JavaScript and Node.js. I notice that many classes like
IEnumerable
and
IDisposable
Are used a lot and seem like you should be familiar with them. What are some other classes and interfaces that pop up often in .Net programming I should be aware of?
i cri evry tiem
The .NET Framework has a lot of classes and which ones you need to know depends a bit on what you want to do, but here are a few ones I'd recommend knowing regardless of what field you want to specialize in:
-
The classes in the System.Collections.Generics[^] namespace are used often - especially List<T> and Dictionary<TKey, TValue>.
-
The classes in the System.IO namespace[^] to work with the file system.
The quick brown ProgramFOX jumps right over the
Lazy<Dog>
.
-