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 - System.Collections.Concurrent
- As previous bu thread safe - As previous bu thread safe
## Live coding ## Live coding - List
```csharp ```csharp
namespace Lecture; namespace Lecture;
public static class Program { public static class Program {
@ -46,4 +46,16 @@ public static class Program {
myList. myList.
} }
} }
```
## Live coding - Dictionary
```csharp
namespace Lecture;
public static class Program {
public static void Main() {
var dict = Dictionary<
}
}
```