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

◆ IsSqlType() [2/2]

static bool System.Data.Common.DataStorage.IsSqlType ( Type dataType)
inlinestaticinherited

Definition at line 326 of file DataStorage.cs.

327 {
328 for (int i = 26; i < s_storageClassType.Length; i++)
329 {
330 if (dataType == s_storageClassType[i])
331 {
332 return true;
333 }
334 }
335 return false;
336 }
static readonly Type[] s_storageClassType

References System.Data.Common.DataStorage.s_storageClassType.