Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TreeSet.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
8public sealed class TreeSet<T> : SortedSet<T>
9{
10 public TreeSet()
11 {
12 }
13
15 : base(comparer)
16 {
17 }
18
21 {
22 }
23
25 : base(siInfo, context)
26 {
27 }
28
29 internal override bool AddIfNotPresent(T item)
30 {
31 bool flag = base.AddIfNotPresent(item);
32 if (!flag)
33 {
35 }
36 return flag;
37 }
38}
TreeSet(SerializationInfo siInfo, StreamingContext context)
Definition TreeSet.cs:24
TreeSet(TreeSet< T > set, IComparer< T > comparer)
Definition TreeSet.cs:19
override bool AddIfNotPresent(T item)
Definition TreeSet.cs:29
TreeSet(IComparer< T >? comparer)
Definition TreeSet.cs:14
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string Argument_AddingDuplicate
Definition SR.cs:14
Definition SR.cs:7