标签: f# static-methods
我确定这应该是显而易见的,但我如何在类中使用多行静态方法?我只是想不出来......
答案 0 :(得分:6)
只需将它们写成多行即可。编译器可以推断每个缩进的方法体。
type Example = class static member Foo a b = // ... a + b end Example.Foo 1 2