Dear Friends,
usually when we made a method.
ex :
private void test (bool vBoll, int vInt)
{
}
and when we call that method.we will use like this :
ex:
test( True,3 )
but I have a method like this
ex:
private static void EventFire( Delegate raisedEvent, params object[] args )
so when I call that method what value i use for raiseEvent?(since I don't know what is Delegate)
please help me....
Thanks,