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

◆ IsInstanceOfType()

static bool System.Xml.Linq.XHelper.IsInstanceOfType ( object o,
Type type )
inlinestaticpackage

Definition at line 5 of file XHelper.cs.

6 {
7 if (o != null)
8 {
9 return type.IsAssignableFrom(o.GetType());
10 }
11 return false;
12 }

References System.Xml.Dictionary, and System.type.

Referenced by System.Xml.Linq.XObject.Annotation(), System.Xml.Linq.XObject.AnnotationsIterator(), and System.Xml.Linq.XObject.RemoveAnnotations().