2 writes to siInfo
System.Collections (2)
System\Collections\Generic\SortedSet.cs (2)
131
protected SortedSet(SerializationInfo info, StreamingContext context) =>
siInfo
= info;
1587
siInfo
= null;
5 references to siInfo
System.Collections (5)
System\Collections\Generic\SortedSet.cs (5)
1558
if (
siInfo
== null)
1563
comparer = (IComparer<T>)
siInfo
.GetValue(ComparerName, typeof(IComparer<T>))!;
1564
int savedCount =
siInfo
.GetInt32(CountName);
1568
T[]? items = (T[]?)
siInfo
.GetValue(ItemsName, typeof(T[]));
1581
version =
siInfo
.GetInt32(VersionName);