Suppose I have this class:
public class DispatcherService<T>
{
private static Action<T> Dispatcher;
public static void SetDispatcher(Action<T> action)
{
Dispatcher = action;
}
public static void Dispatch(T obj)
{
Dispatcher.Invoke(obj);
}
}
Let me get this straight...
I'll have only one instance of DispatcherService<T> for each type, and only when I call it. Right?
Just asking for memory issues.
Thanks in advance!