vault backup: 2023-11-23 09:29:20

This commit is contained in:
Louis Gallet 2023-11-23 09:29:20 +01:00
parent a679f9b3bf
commit 6d4ca16577
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -1 +1,16 @@
We have 3 collections namespace in C#
- System.Collections
- Store items as Object
- ArrayList
- Queue
- Stack
- Hashtable
- System.Collections.Generic
- Using Generics to specify one data type
- List
- Queue
- Stack
- Dictionary<TKey,TValue>
- System.Collections.Concurrent
- As previous bu thread safe
-