Custom events

mephist

New member
Joined
Jun 11, 2008
Messages
1
Programming Experience
Beginner
Guys I am really in need of help with this, should be pretty simple, I understand the logic but the syntax is killing me.

I have tried every code converter around to no avail.

public event CommandEventHandler Command
{
add
{
Events.AddHandler(CommandKey, value);
}
remove
{
Events.RemoveHandler(CommandKey, value);
}
}

protected virtual void OnCommand(CommandEventArgs ce)
{
CommandEventHandler commandEventDelegate =
(CommandEventHandler)Events[CommandKey];
if (commandEventDelegate != null)
{
commandEventDelegate(this, ce);
}
RaiseBubbleEvent(this, ce);
}

Now how would I go on to do this in VB.

Thanx alot for the help guys.
 
Back
Top