Callbacks
From Headbone Creative
Revision as of 21:59, 15 April 2013 by Tyson Joehler (Talk | contribs)
This file contains the callback definitions used with the Messenger system.
See this page for more information: Advanced C# Messenger
public delegate void Callback(); public delegate void Callback<T>(T arg1); public delegate void Callback<T, U>(T arg1, U arg2); public delegate void Callback<T, U, V>(T arg1, U arg2, V arg3);