How to define and use static variables in F# class - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:37:53Z http://stackoverflow.com/feeds/question/62654 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62654/how-to-define-and-use-static-variables-in-f-class 3 How to define and use static variables in F# class Stas 2008-09-15T13:06:18Z 2008-09-29T21:51:05Z <p>Is there a way to have a mutable static variable in F# class that is identical to a static variable in C# class ? </p> http://stackoverflow.com/questions/62654/how-to-define-and-use-static-variables-in-f-class/65151#65151 2 Answer by Chris Smith for How to define and use static variables in F# class Chris Smith 2008-09-15T17:56:56Z 2008-09-15T17:56:56Z <p>This isn't really reccomended, but if you must do it:</p> <ol> <li>Use an explicit class constructor (Cannot use type Foo(args) = syntax)</li> <li>Set the field to be static, mutable</li> <li><p>Add the [] attribute</p> <p>type Foo =</p> <pre><code>new() = { } [&lt;DefaultValue&gt;] static val mutable m_field : int </code></pre> <p>Foo.m_field &lt;- 1</p> <p>printfn "Foo.m_field = %d" Foo.m_field</p></li> </ol>