Difference between raising event with SomeEvent(arg) and SomeEvent.Invoke(arg)

Posted by LLS on Stack Overflow See other posts from Stack Overflow or by LLS
Published on 2010-06-18T14:40:30Z Indexed on 2010/06/18 14:53 UTC
Read the original article Hit count: 207

Filed under:
|

Is there any difference in using

SomeEvent(arg);

and

SomeEvent.Invoke(arg);

If there is no significant difference, which one is the better practice?

© Stack Overflow or respective owner

Related posts about c#

Related posts about events