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

◆ Descendants< T >() [1/2]

static IEnumerable< XElement > System.Xml.Linq.Extensions.Descendants< T > ( this IEnumerable< T?> source)
inlinestatic
Type Constraints
T :XContainer 

Definition at line 112 of file Extensions.cs.

112 : XContainer
113 {
114 if (source == null)
115 {
116 throw new ArgumentNullException("source");
117 }
118 return GetDescendants(source, null, self: false);
119 }

References System.source.