vimwiki/tech/dotnet.wiki

28 lines
445 B
Plaintext

= 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
== LINQ ==
== System.Collections ==
=== System.Collections.Generic ===
* Dictionary<TKey, TValue>
* Hash table
* List<T>
* Same as arraylist, dynamically allocated array
* Queue<T>
* Typical Queue, FIFO
* SortedList<T>
* Binary Tree
* Stack<T>
* Typical Stack, LIFO