Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IComparable.cs
Go to the documentation of this file.
1namespace System;
2
3public interface IComparable
4{
5 int CompareTo(object? obj);
6}
7public interface IComparable<in T>
8{
9 int CompareTo(T? other);
10}
int CompareTo(T? other)
int CompareTo(object? obj)