Did you know? Delegates to extension methods

I didn't know about this until recently: You can take a delegate to an extension method as if it was an instance method: https://csharpindepth.com/ViewNote.aspx?NoteID=92 The delegate's target will be set to the instance. Nice!