terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Where< TSource >()

static IEnumerable< TSource > System.Linq.Enumerable.Where< TSource > ( this IEnumerable< TSource > source,
Func< TSource, bool > predicate )
inlinestatic

Definition at line 15 of file Enumerable.cs.

16 {
17 if (source == null)
18 {
19 Exception ex = Error.ArgumentNull("predicate");
20 throw new InvalidCastException();
21 }
22 if (source == null)
23 {
24 return source;
25 }
26 if (source != null)
27 {
28 return source;
29 }
30 throw new InvalidCastException();
31 }

References System.Linq.Error.ArgumentNull(), and System.source.