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

◆ CanBeNull()

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

Definition at line 263 of file ReflectionExtensions.cs.

264 {
265 if (type.IsValueType)
266 {
267 return type.IsNullableOfT();
268 }
269 return true;
270 }

References System.type.