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

◆ RunOnEmptyStack< T1, T2 >()

void System.Linq.Expressions.StackGuard.RunOnEmptyStack< T1, T2 > ( Action< T1, T2 > action,
T1 arg1,
T2 arg2 )
inline

Definition at line 24 of file StackGuard.cs.

25 {
26 RunOnEmptyStackCore(delegate(object s)
27 {
28 (Action<T1, T2>, T1, T2) tuple = ((Action<T1, T2>, T1, T2))s;
29 tuple.Item1(tuple.Item2, tuple.Item3);
30 return (object)null;
31 }, (action, arg1, arg2));
32 }

References System.action, and System.s.