【发布时间】:2014-07-11 20:14:53
【问题描述】:
KO 不工作有什么真正的原因吗?
type IBase =
abstract member test : (unit * unit) -> unit
type OK() =
interface IBase with
member x.test ((titi,tata)) = () //OK
type KO() =
interface IBase with
member x.test (titi,tata) = () //fail : This override takes a different number of arguments to the corresponding abstract member
【问题讨论】: