No argument names in abstract declaration?

后端 未结 2 1133
独厮守ぢ
独厮守ぢ 2021-02-05 03:04

This is the typical declaration of an abstract member in F#:

abstract member createEmployee : string -> string -> Employee

You define the

2条回答
  •  心在旅途
    2021-02-05 03:40

    What about:

    abstract member createEmployee : firstName:string -> lastName:string -> Employee
    

    ?

提交回复
热议问题