有没有办法让F#类中的可变静态变量与C#类中的静态变量相同?
你使用static let绑定(注意:虽然需要一些时间,它没有太多功能):
static let
type StaticMemberTest () = static let mutable test : string = "" member this.Test with get() = test <- "asdf" test