Hi,
I have one delegate method
public delegate void EventHanler(object sender, EventManagerArgs e);
public class EventManagerArgs : EventArgs
{
public static readonly EventManagerArgs Empty;
public EventManagerArgs(object obj = null) { }
public string Name1 { get; set; }
}
public void Add(string name, EventHanler args)
{
}
right now my requirement is that i need to get some static data to Add method from other method
can you please help me how to get
i am totally getting confusion regrading this