If you really need to have something like that (always a good question, usually things like this are a tell signs of something a bit odd-ish about the design, but doesn't have to be),
I'd say you should look at The Reactive Extensions (Rx)....
They provide the ease with dealing and firing off your own 'events' more or less like properties or methods (and w/o the typical pain of delegates, add/subscribe or private limitations etc., over simplified a bit).
...and this could look like...
someObjectInstance.MyEvent.Subscribe(d=>
{
// ... your lambda more or less
});
...and in the class there is if simplified just one Subject<MyEventData> _myEvent; and _myEvent.OnNext(data) (goes inside the method you want to rise from) + the property to expose that field (IObservable<MyEventData> MyEvent {get{return _myEvent;}}).
which is what you want really.
You can install them from NuGet and use in minutes. Though there is a learning curve for more tricky cases.
Plus you get the benefit of combining events in the future and lot more.
(not 'one of them', just a very good new piece of technology)