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

◆ DescendantNodes< T >()

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

Definition at line 103 of file Extensions.cs.

103 : XContainer
104 {
105 if (source == null)
106 {
107 throw new ArgumentNullException("source");
108 }
109 return GetDescendantNodes(source, self: false);
110 }

References System.source.