@@ -881,25 +881,25 @@ Console.WriteLine($"Student Id: {id}, Name: {name}, GPA: {gpa}");
881
881
## 集合
882
882
883
883
### c#集合
884
-
885
- | 集合 | 有序 | 已排序 | 线程安全 | 允许空值 |
886
- | :----------------------------------------------------------- | :--- | :----- | :------- | :------- |
887
- | [ List] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.list-1 ) | Y | * N* | * N* | 是 |
888
- | [ ArrayList] ( https://docs.microsoft.com/dotnet/api/system.collections.arraylist ) (非泛型) | Y | * N* | * N* | 是 |
889
- | [ Vector] ( https://docs.microsoft.com/dotnet/api/system.collections.vector ) (非泛型) | N | * N* | Y | 是 |
890
- | [ LinkedList] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.linkedlist-1 ) | Y | * N* | * N* | 是 |
891
- | [ ConcurrentBag] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentbag-1 ) | * N* | * N* | Y | 是 |
892
- | [ HashSet] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.hashset-1 ) | * N* | * N* | * N* | 是 |
893
- | [ SortedSet] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.sortedset-1 ) | Y | Y | * N* | 是 |
894
- | [ ConcurrentDictionary] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentdictionary-2 ) | Y | * N* | Y | 是 |
895
- | [ Dictionary] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 ) | * N* | * N* | * N* | 是 |
896
- | [ SortedDictionary] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.sorteddictionary-2 ) | Y | Y | * N* | 是 |
897
- | [ Stack] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.stack-1 ) | * N* | * N* | * N* | 是 |
898
- | [ Queue] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.queue-1 ) | * N* | * N* | * N* | 是 |
899
- | [ ConcurrentQueue] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentqueue-1 ) | * N* | * N* | Y | 是 |
900
- | [ ConcurrentStack] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentstack-1 ) | * N* | * N* | Y | 是 |
901
- | [ HashTable] ( https://learn.microsoft.com/zh-cn/dotnet/api/system.collections.hashtable?view=net-6.0 ) | N | Y | Y | 否 |
902
-
884
+ <!-- rehype:wrap-class=col-span-2 row-span-2 -->
885
+ | 集合 | 有序 | 已排序 | 线程安全 | 允许空值 |
886
+ | :----------------------------------------------------------- | :---- | :----- | :------- | :------- |
887
+ | [ List] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.list-1 ) | Y | * N* | * N* | 是 |
888
+ | [ ArrayList] ( https://docs.microsoft.com/dotnet/api/system.collections.arraylist ) (非泛型) | Y | * N* | * N* | 是 |
889
+ | [ Vector] ( https://docs.microsoft.com/dotnet/api/system.collections.vector ) (非泛型) | * N * | * N* | Y | 是 |
890
+ | [ LinkedList] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.linkedlist-1 ) | Y | * N* | * N* | 是 |
891
+ | [ ConcurrentBag] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentbag-1 ) | * N* | * N* | Y | 是 |
892
+ | [ HashSet] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.hashset-1 ) | * N* | * N* | * N* | 是 |
893
+ | [ SortedSet] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.sortedset-1 ) | * N * | Y | * N* | 是 |
894
+ | [ ConcurrentDictionary] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentdictionary-2 ) | Y | * N* | Y | 是 |
895
+ | [ Dictionary] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 ) | * N* | * N* | * N* | 是 |
896
+ | [ SortedDictionary] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.sorteddictionary-2 ) | Y | Y | * N* | 是 |
897
+ | [ Stack] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.stack-1 ) | * N* | * N* | * N* | 是 |
898
+ | [ Queue] ( https://docs.microsoft.com/dotnet/api/system.collections.generic.queue-1 ) | * N* | * N* | * N* | 是 |
899
+ | [ ConcurrentQueue] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentqueue-1 ) | * N* | * N* | Y | 是 |
900
+ | [ ConcurrentStack] ( https://docs.microsoft.com/dotnet/api/system.collections.concurrent.concurrentstack-1 ) | * N* | * N* | Y | 是 |
901
+ | [ HashTable] ( https://learn.microsoft.com/zh-cn/dotnet/api/system.collections.hashtable?view=net-6.0 ) | N | Y | Y | 否 |
902
+ <!-- rehype:className=show-header -->
903
903
### List
904
904
905
905
``` cs
0 commit comments