我在一个类中创建了一个成员函数。之后我想创建一个设置为此成员函数结果的成员值。
type MyType() =
member this.drawFilledPlanet(xCoord:int, yCoord:int, pWidth:int, pHeight:int, color) =
let brush = new System.Drawing.SolidBrush(color)
this.window.Paint.Add(fun e ->
e.Graphics.FillEllipse(brush, xCoord, yCoord, pWidth, pHeight))
member val theSun = drawFilledPlanet(350,350,100,100, this.yellow)
我收到drawFilledPlanet
未定义的错误。
有人可以告诉我发生了什么吗?