F# Multiline Static Methods - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:34:08Z http://stackoverflow.com/feeds/question/990385 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/990385/f-multiline-static-methods 2 F# Multiline Static Methods RCIX 2009-06-13T09:23:02Z 2009-06-13T09:35:59Z <p>I'm sure this should be obvious, but how do i have a multiline static method in a class? i just can't figure it out...</p> http://stackoverflow.com/questions/990385/f-multiline-static-methods/990403#990403 6 Answer by Dario for F# Multiline Static Methods Dario 2009-06-13T09:35:59Z 2009-06-13T09:35:59Z <p>Just write them in multiple lines. The compiler can infer the method-body per indentation.</p> <pre><code>type Example = class static member Foo a b = // ... a + b end Example.Foo 1 2 </code></pre>