Is it possible to specify parameter names for delegate types in F#? When I create a delegate of this type in F#:
type DataValidationEventHandler = delegate of obj * DataValidationEventArgs -> unit
...it auto-generates this signature for the handler in C#:
static void loader_ValidationEvent(object __p1, DataValidationEventArgs __p2)
Ideally it would generate the usual 'sender' and 'e' parameter names.