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

◆ RunOnEmptyStack< T1, T2, T3 >()

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

Definition at line 34 of file StackGuard.cs.

35 {
36 RunOnEmptyStackCore(delegate(object s)
37 {
38 (Action<T1, T2, T3>, T1, T2, T3) tuple = ((Action<T1, T2, T3>, T1, T2, T3))s;
39 tuple.Item1(tuple.Item2, tuple.Item3, tuple.Item4);
40 return (object)null;
41 }, (action, arg1, arg2, arg3));
42 }

References System.action, and System.s.