vimwiki/tech/dotnet.wiki

28 lines
445 B
Plaintext
Raw Normal View History

2022-02-24 19:15:01 +00:00
= dotnet =
dotnet is the heavily intertwined framework with [[C-sharp]].
The following will be some common API's and containers that can be accessed in
dotnet
2022-02-24 19:30:01 +00:00
== LINQ ==
2022-02-24 19:45:01 +00:00
2022-02-24 19:15:01 +00:00
== System.Collections ==
=== System.Collections.Generic ===
* Dictionary<TKey, TValue>
2022-02-24 19:30:01 +00:00
* Hash table
2022-02-24 19:15:01 +00:00
* List<T>
* Same as arraylist, dynamically allocated array
2022-02-24 19:30:01 +00:00
* Queue<T>
* Typical Queue, FIFO
* SortedList<T>
* Binary Tree
* Stack<T>
* Typical Stack, LIFO