vault backup: 2023-11-23 09:53:00

This commit is contained in:
Louis Gallet 2023-11-23 09:53:00 +01:00
parent 2ee026bf6f
commit 59212a8fc8
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY

View File

@ -17,7 +17,7 @@ We have 3 collections namespace in C#
- System.Collections.Concurrent
- As previous bu thread safe
## Live coding
## Live coding - List
```csharp
namespace Lecture;
public static class Program {
@ -47,3 +47,15 @@ public static class Program {
}
}
```
## Live coding - Dictionary
```csharp
namespace Lecture;
public static class Program {
public static void Main() {
var dict = Dictionary<
}
}
```