Related to No argument names in abstract declaration?, how would you do this with a C#-style tupled argument? So if I wanted
abstract member createEmployee : (string * string) -> Employee
how would I be able to communicate whether it should be
1- member this.createEmployee(firstName, lastName) = ...
2- member this.createEmployee(lastName, firstName) = ...
Use case: creating an interface in F# to be used from C#.