G
Guest
Why when instantiating a delegate the prefix “event†is added?
For example:
public delegate void ExampleDelegate(string str);
class example
{
....
public event ExampleDelegate DelegateMember;
....
}
If a drop the “event†prefix it's still working nicely, so why the “eventâ€
prefix is for???
For example:
public delegate void ExampleDelegate(string str);
class example
{
....
public event ExampleDelegate DelegateMember;
....
}
If a drop the “event†prefix it's still working nicely, so why the “eventâ€
prefix is for???