How to define and use static variables in F# class - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T07:37:53Zhttp://stackoverflow.com/feeds/question/62654http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62654/how-to-define-and-use-static-variables-in-f-class3How to define and use static variables in F# classStas2008-09-15T13:06:18Z2008-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#651512Answer by Chris Smith for How to define and use static variables in F# classChris Smith2008-09-15T17:56:56Z2008-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() = { }
[<DefaultValue>]
static val mutable m_field : int
</code></pre>
<p>Foo.m_field <- 1</p>
<p>printfn "Foo.m_field = %d" Foo.m_field</p></li>
</ol>