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

◆ IsNullableOfT()

static bool System.Text.Json.Reflection.ReflectionExtensions.IsNullableOfT ( this Type type)
inlinestatic

Definition at line 253 of file ReflectionExtensions.cs.

254 {
255 if (type.IsGenericType)
256 {
257 return type.GetGenericTypeDefinition() == s_nullableType;
258 }
259 return false;
260 }

References System.Text.Json.Reflection.ReflectionExtensions.s_nullableType, and System.type.