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

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

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

Definition at line 165 of file Extensions.cs.

165 : XContainer
166 {
167 if (source == null)
168 {
169 throw new ArgumentNullException("source");
170 }
171 return GetElements(source, null);
172 }

References System.source.