1.

What Is Action In C# 3.5?

Answer»

Action is a built-in delegate which RETURNS void.

There are 5 VERSIONS of Action

Action Action<T>
Action<T1,T2>
Action<T1,T2,T3>
Action<T1,T2,T3,T4>

Action is a built-in delegate which returns void.

There are 5 versions of Action

Action Action<T>
Action<T1,T2>
Action<T1,T2,T3>
Action<T1,T2,T3,T4>



Discussion

No Comment Found