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

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

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

Definition at line 29 of file Extensions.cs.

29 : XNode
30 {
31 if (source == null)
32 {
33 throw new ArgumentNullException("source");
34 }
35 return GetAncestors(source, null, self: false);
36 }

References System.source.