G
Guest
hey all,
could someone please help me translate the following c# snippet:
public event EventHandler BubbleClick;
protected void OnBubbleClick(EventArgs e)
{
if(BubbleClick != null)
{
BubbleClick(this, e);
}
}
i'm particularly having problems with the if statement.
thanks,
rodchar
could someone please help me translate the following c# snippet:
public event EventHandler BubbleClick;
protected void OnBubbleClick(EventArgs e)
{
if(BubbleClick != null)
{
BubbleClick(this, e);
}
}
i'm particularly having problems with the if statement.
thanks,
rodchar