Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XHelper.cs
Go to the documentation of this file.
1namespace System.Xml.Linq;
2
3internal static class XHelper
4{
5 internal static bool IsInstanceOfType(object o, Type type)
6 {
7 if (o != null)
8 {
9 return type.IsAssignableFrom(o.GetType());
10 }
11 return false;
12 }
13}
static bool IsInstanceOfType(object o, Type type)
Definition XHelper.cs:5