3
type IFooable =
abstract Foo : int -> int
type IFooable2 =
abstract Foo : a : int -> int
type MyClass() =
interface IFooable2 with
member this.Foo(b) = 7
IFooable和IFooable2有什麼區別?它們是否相同? 在我的例子中,它的目的是什麼?何時使用它?這兩種語法之間的區別