(I know the title sounds easy, but hold on—this probably isn\'t the question you think it is.)
In VB.NET I was able to write custom events. For an example, I
You simply can't. But since events can be raised only from inside the type that declares them, you can create a helper method that executes your specific raising code. And then just make sure you don't raise the event directly outside that method.