Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryCreateNullableComparer()

static object System.Collections.Generic.ComparerHelpers.TryCreateNullableComparer ( RuntimeType nullableType)
inlinestaticprivate

Definition at line 27 of file ComparerHelpers.cs.

28 {
29 RuntimeType runtimeType = (RuntimeType)nullableType.GetGenericArguments()[0];
30 if (typeof(IComparable<>).MakeGenericType(runtimeType).IsAssignableFrom(runtimeType))
31 {
32 return RuntimeTypeHandle.CreateInstanceForAnotherGenericParameter((RuntimeType)typeof(NullableComparer<int>), runtimeType);
33 }
34 return null;
35 }

References System.RuntimeTypeHandle.CreateInstanceForAnotherGenericParameter().

Referenced by System.Collections.Generic.ComparerHelpers.CreateDefaultComparer().