Update for 24-02-22 14:30

This commit is contained in:
Tyler Perkins 2022-02-24 14:30:01 -05:00
parent d7b4dba3e4
commit 1cf200092d

View File

@ -5,11 +5,22 @@ 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