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

◆ Select< TResult, TSource >() [2/2]

static IEnumerable< TResult > System.Linq.Enumerable.Select< TResult, TSource > ( this IEnumerable< TSource > source,
Func< TSource, TResult > selector )
inlinestatic

Definition at line 34 of file Enumerable.cs.

35 {
36 if (source == null)
37 {
38 Exception ex = Error.ArgumentNull("selector");
39 throw new InvalidCastException();
40 }
41 if (source == null)
42 {
43 return source;
44 }
45 if (source != null)
46 {
47 return source;
48 }
49 throw new InvalidCastException();
50 }

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