User MichaelGG - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:50:27Z http://stackoverflow.com/feeds/user/27012 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1645635/create-a-delegate-of-a-generic-function/1645816#1645816 4 Answer by MichaelGG for Create a delegate of a generic function MichaelGG 2009-10-29T18:53:46Z 2009-10-29T18:53:46Z <p>If I understand you correctly, this should demonstrate what you are trying to do. The magic is in MakeGenericMethod.</p> <pre><code>using System; class Program { static void Main(string[] args) { var meth = typeof(Program).GetMethod("Meth"); var items = new[] { new { a = (object)"hi", b = (object)1 }, new { a = (object)TimeSpan.MaxValue, b = (object)DateTime.UtcNow }, }; foreach (var item in items) { var gmeth = meth.MakeGenericMethod(item.a.GetType(), item.b.GetType()); gmeth.Invoke(null, new[] { item.a, item.b }); } } public static void Meth&lt;A, B&gt;(A a, B b) { Console.WriteLine("&lt;{0}, {1}&gt;", typeof(A).Name, typeof(B).Name); } } </code></pre> <p>Outputs:</p> <pre><code>&lt;String, Int32&gt; &lt;TimeSpan, DateTime&gt; </code></pre> http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645650#1645650 0 Answer by MichaelGG for Refactor method with multiple return points MichaelGG 2009-10-29T18:23:29Z 2009-10-29T18:23:29Z <p>You could reverse your status setting. Set the error status before calling the exception throwing method. At the end, set it success if no exceptions.</p> <pre><code>Status status = Status.Error; try { var res1 = performStep1(); status = Status.Warning; performStep2(res1); status = Status.Whatever performStep3(); status = Status.Success; // no exceptions thrown } catch (Exception ex) { log(ex); } finally { // ... } </code></pre> http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645543#1645543 1 Answer by MichaelGG for Refactor method with multiple return points MichaelGG 2009-10-29T18:06:42Z 2009-10-29T18:14:53Z <p>Get a tuple class. Then do:</p> <pre><code>var steps = new List&lt;Tuple&lt;Action, Status&gt;&gt;() { Tuple.Create(performStep1, Status.Error), Tuple.Create(performStep2, Status.Warning) }; var status = Status.Success; foreach (var item in steps) { try { item.Item1(); } catch (Exception ex) { log(ex); status = item.Item2; break; } } // "Finally" code here </code></pre> <p>Oh yea, you can use anon types for tuples:</p> <pre><code>var steps = new [] { { step = (Action)performStep1, status = Status.Error }, { step = (Action)performStep2, status = Status.Error }, }; var status = Status.Success foreach (var item in steps) { try { item.step(); } catch (Exception ex) { log(ex); status = item.status; break; } } // "Finally" code here </code></pre> http://stackoverflow.com/questions/1623450/discriminated-unions-in-nhibernate 11 Discriminated unions in NHibernate MichaelGG 2009-10-26T07:06:58Z 2009-10-29T00:53:28Z <p>I'm wondering if there's any relatively easy way to extend NHibernate to support F#'s discriminated union. Not just a single IUserType or ICompositeUserType, but something generic that I can re-use regardless of the actual contents of the DU.</p> <p>For example, suppose I have a property called RequestInfo, which is a union defined as:</p> <pre><code>type RequestInfo = | Id of int | Name of string </code></pre> <p>This compiles into an abstract RequestInfo class, with concrete subclasses Id and Name. I can get all this info out just fine with F# reflection. In this case, I could store it in the database with "RequestInfo_Tag", "RequestInfo_Id", "RequestInfo_Name". </p> <p>As I'm a NHibernate newbie, what kind of problems am I going to run into trying to follow this approach? Are more complex cases going to be impossible to deal with? For example, what about nested discriminated unions? Is there a way I can "hand off" the reading of the rest of the union to another ICompositeUserType?</p> <p>More importantly, will this mess up my querying capabilities? Meaning, will I have to know the actual column names in the DB; I won't be able to do Criteria.Eq(SomeDiscUnion) and have it all sorted out?</p> <p>I'm not looking for a complete "provide code" answer, just some general advice if this is even worth going after (and some pointers on how), or if I should just rethink my model.</p> <p>Thanks!</p> <p>P.S. Not to be rude, but if your answer consists of "use C#", it's not very helpful. </p> http://stackoverflow.com/questions/1635368/sql-server-developer-edition-license-and-cal/1635874#1635874 1 Answer by MichaelGG for SQL Server developer Edition License and CAL MichaelGG 2009-10-28T08:39:00Z 2009-10-28T08:39:00Z <p>In addition to Chris J's answer, the licensing also provides:</p> <p><strong>II) Additional Licensing Requirements and/or Use Rights.</strong></p> <p>User Testing. Your end users may access the software to perform acceptance tests on your programs. </p> http://stackoverflow.com/questions/1635742/limiting-the-size-of-the-managed-heap-in-a-c-application/1635858#1635858 1 Answer by MichaelGG for Limiting the size of the managed heap in a C# application MichaelGG 2009-10-28T08:33:29Z 2009-10-28T08:33:29Z <p>I haven't tried this out, but you could attempt to call <a href="http://msdn.microsoft.com/en-us/library/ms686237%28VS.85%29.aspx" rel="nofollow">SetProcessWorkingSetSizeEx</a> passing in the right flags to enforce that your process never gets more than so much memory. I don't know if the GC will take this into account and clean up more often, or if you'll just get OutOfMemoryExceptions.</p> http://stackoverflow.com/questions/1625882/what-is-f-being-used-for/1632529#1632529 0 Answer by MichaelGG for What is F# being used for? MichaelGG 2009-10-27T17:47:37Z 2009-10-27T17:47:37Z <p>As I answered <a href="http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production">here</a> :</p> <blockquote> <p>F# has a complete (almost?) superset of C# functionality, so you'll lose nothing (apart from some of the designer support). F# works with OO; it does not necesarily force you to use a functional approach to everything. Indeed, F# encourages you to use imperative/OO style when convenient.</p> <p>So, at worst, F# for a die-hard C# programmer is just going to mean lighter syntax. But more probably, you'll end up with simpler, easier solutions. You can apply some of the techniques to C# too, if you decide not to use F#. And best, you'll probably have fun.</p> <p>...</p> </blockquote> http://stackoverflow.com/questions/1624571/how-to-invoke-methods-from-constructor-in-f/1624593#1624593 3 Answer by MichaelGG for How to invoke methods from constructor in F# MichaelGG 2009-10-26T12:46:22Z 2009-10-26T12:46:22Z <p>You need "do":</p> <pre><code>type Foo(args) = let x = new Whatever() do x.Bar() member .... </code></pre> http://stackoverflow.com/questions/1618440/methods-of-simplifying-ugly-nested-if-else-trees-in-c/1623997#1623997 0 Answer by MichaelGG for Methods of simplifying ugly nested if-else trees in C# MichaelGG 2009-10-26T10:07:01Z 2009-10-26T10:07:01Z <p>Not a C# answer, but you probably would like pattern matching. With pattern matching, you can take several inputs, and do simultaneous matches on all of them. For example (F#):</p> <pre><code>let x= match cond1, cond2, name with | _, _, "Bob" -&gt; 9000 // Bob gets 9000, regardless of cond1 or 2 | false, false, _ -&gt; 0 | true, false, _ -&gt; 1 | false, true, _ -&gt; 2 | true, true, "" -&gt; 0 // Both conds but no name gets 0 | true, true, _ -&gt; 3 // Cond1&amp;2 give 3 </code></pre> <p>You can express any combination to create a match (this just scratches the surface). However, C# doesn't support this, and I doubt it will any time soon. Meanwhile, there are some attempts to try this in C#, such as here: <a href="http://codebetter.com/blogs/matthew.podwysocki/archive/2008/09/16/functional-c-pattern-matching.aspx" rel="nofollow">http://codebetter.com/blogs/matthew.podwysocki/archive/2008/09/16/functional-c-pattern-matching.aspx</a>. Google can turn up many more; perhaps one will suit you.</p> http://stackoverflow.com/questions/1616761/c-without-net-framework/1623950#1623950 0 Answer by MichaelGG for C# without .NET Framework MichaelGG 2009-10-26T09:52:26Z 2009-10-26T09:52:26Z <p>As a side note, Mono has full ahead of time compiling, eliminating the runtime. (I think that's how they get away running on iPhone, which prohibits any JIT.) </p> http://stackoverflow.com/questions/1623906/programmatically-inspect-net-code/1623917#1623917 3 Answer by MichaelGG for Programmatically inspect .NET code MichaelGG 2009-10-26T09:42:09Z 2009-10-26T09:42:09Z <p>You can use System.Reflection, that should do the trick nicely for some of the things you want. As far as getting into the IL itself, check out Mono's <a href="http://mono-project.com/Cecil" rel="nofollow">Cecil</a>.</p> http://stackoverflow.com/questions/1135280/what-is-f-lacking-for-oo-or-imperative 8 What is F# lacking for OO or imperative? MichaelGG 2009-07-16T03:38:50Z 2009-09-18T17:23:53Z <p>Many times I hear that F# is not suited to particular tasks, such as UI. "Use the right tool" is a common phrase. </p> <p>Apart from missing tools such as a WinForms/WPF/ORM designer, I'm not sure what exactly is missing in F# -- honestly! Yet, particularly with UI, I'm told that C# just does it better. So, what are the actual differences and omissions in F# when using it imperatively? </p> <p>Here is a list I came up with:</p> <ul> <li><p>Lots of missing tool support</p></li> <li><p>F# is still beta</p></li> <li><p>Your developers don't know F#</p> <ul> <li>I'd like to not consider those points, as they aren't really intrinsic to F#</li> </ul></li> <li><p>Mutables need "mutable" or need to be ref, ref needs ! to dereference</p></li> <li><p>Mutables assign with &lt;- and ref uses := ( they're both 1 more character than just = )</p></li> <li><p>val needs DefaultValueAttribute to get a default value</p></li> <li><p>F# doesn't emit implicit interfaces </p></li> <li><p>Protected members are more difficult to deal with</p></li> <li><p>No automatic properties</p></li> <li><p>Implemented virtual members on abstract classes require two definitions</p></li> <li><p>Quotations-to-LINQ-Expression-Trees produces trees slightly different than C#/VB (annoying for APIs that expect their Expressions in a specific format)</p></li> <li><p>No stackalloc</p></li> <li><p>F# doesn't have the ?: conditional operator</p></li> <li><p>Pointers might be considered more cumbersome in F#</p></li> <li><p>Delegates/events might possibly be considered more cumbersome (I'd argue they're easier, but at a minimum they're different)</p></li> <li><p>No automatic type conversions (like int to float, or implicit casts)</p></li> <li><p>No special syntax support for Nullable (C#'s ? type annotation and ?? operator, as well as using operators on nullables.)</p></li> <li><p>No automatic upcasting to common base class or boxing (ex: let x : obj = if true then 1 else "hi" // this won't typecheck)</p></li> <li><p>Values can't be discarded without a warning ("ignore" to get around it)</p></li> <li><p>Doesn't have C-style syntax :)</p></li> </ul> <p>To the question: Which of these are a hindrance to writing imperative or OO code? Why (short examples)? Which ones did I miss? What are the best workarounds, and why are they not enough?</p> <p><em>Please note</em>, I'm not talking about writing so-called idiomatic F#, and I'm certainly not talking about functional programming. I'm more interested along the lines of "If I were to force myself to write UI or imperative/OO code in F#, using F# OO/imperative features and class types, what hurts the most?"</p> <p><strong>Bonus</strong> If you don't know F# but use C# or VB.NET and think it's a better tool for some situations, please indicate the specific language features and syntax you find appealing. </p> http://stackoverflow.com/questions/1406678/working-with-nullablet-in-f 4 Working with Nullable<'T> in F# MichaelGG 2009-09-10T17:42:31Z 2009-09-12T11:58:31Z <p>I'm wondering what others have come up with for dealing with Nullable&lt;'T> in F#. I want to use Nullable&lt;'T> on data types so that serialization works properly (i.e., doesn't write out F# option type to XML). But, I don't want my code stuck dealing with the ugliness of dealing with Nullable&lt;'T> directly. Any suggestions? </p> <p>Is it better to use active patterns to match directly on Nullable, or just a converter to option and use Some/None matching?</p> <p>Additionally, I'd love to hear ideas on dealing with nullable references in a nice manner too. If I use, say "string option", then I end up with the F# option type wrapping things. If I don't then I can't distinguish between truly optional strings and strings that shouldn't be null.</p> <p>Any chance .NET 4 will take on an Option&lt;'T> to help out? (If it's part of the BCL, then we might see better support for it...)</p> http://stackoverflow.com/questions/1286643/uniqueidentifier-pk-is-a-sql-server-heap-the-right-choice 2 Uniqueidentifier PK: Is a SQL Server heap the right choice? MichaelGG 2009-08-17T07:49:09Z 2009-09-09T04:50:46Z <p>OK. I've read things here and there about SQL Server heaps, but nothing too definitive to really guide me. I am going to try to measure performance, but was hoping for some guidance on what I should be looking into. This is SQL Server 2008 Enterprise. Here are the tables:</p> <p><strong>Jobs</strong></p> <ul> <li>JobID (PK, GUID, externally generated)</li> <li>StartDate (datetime2)</li> <li>AccountId </li> <li>Several more accounting fields, mainly decimals and bigints</li> </ul> <p><strong>JobSteps</strong></p> <ul> <li>JobStepID (PK, GUID, externally generated)</li> <li>JobID FK</li> <li>StartDate</li> <li>Several more accounting fields, mainly decimals and bigints</li> </ul> <p><strong>Usage:</strong> Lots of inserts (hundreds/sec), usually 1 JobStep per Job. Estimate perhaps 100-200M rows per month. No updates at all, and the only deletes are from archiving data older than 3 months. </p> <p>Do ~10 queries/sec against the data. Some join JobSteps to Jobs, some just look at Jobs. Almost all queries will range on StartDate, most of them include AccountId and some of the other accounting fields (we have indexes on them). Queries are pretty simple - the largest part of the execution plans is the join for JobSteps.</p> <p>The priority is the insert performance. Some lag (5 minutes or so) is tolerable for data to appear in the queries, so replicating to other servers and running queries off them is certainly allowable.</p> <p>Lookup based on the GUIDs is very rare, apart from joining JobSteps to Jobs.</p> <p><strong>Current Setup</strong>: No clustered index. The only one that seems like a candidate is StartDate. But, it doesn't increase perfectly. Jobs can be inserted anywhere in a 3 hour window after their StartDate. That could mean a million rows are inserted in an order that is not final.</p> <p>Data size for a 1 Job + 1 JobStepId, with my current indexes, is about 500 bytes. </p> <p><strong>Questions</strong>: </p> <ul> <li><p>Is this a good use of a heap? </p></li> <li><p>What's the effect of clustering on StartDate, when it's pretty much non-sequential for ~2 hours/1 million rows? My guess is the constant re-ordering would kill insert perf.</p></li> <li><p>Should I just add bigint PKs just to have smaller, always increasing keys? (I'd still need the guids for lookups.) </p></li> </ul> <p>I read <a href="http://www.sqlskills.com/BLOGS/KIMBERLY/post/GUIDs-as-PRIMARY-KEYs-andor-the-clustering-key.aspx" rel="nofollow">GUIDs as PRIMARY KEYs and/or the clustering key</a>, and it seemed to suggest that even inventing a key will save considerable space on other indexes. Also some resources suggest that heaps have some sort of perf issues in general, but I'm not sure if that still applies in SQL 2008. </p> <p>And again, yes, I'm going to try to perf test and measure. I'm just trying to get some guidance or links to other articles so I can make a more informed decision on what paths to consider.</p> http://stackoverflow.com/questions/1318743/large-amount-of-tempdb-log-writing-no-reading 1 Large amount of tempdb log writing, no reading [closed] MichaelGG 2009-08-23T14:49:29Z 2009-08-23T23:45:16Z <p>I'm running into some behaviour that appears strange to me. I'm using SQL Server 2008 Enterprise, 32-bit (quad Core 2), on Windows 7 (for testing).</p> <p>I have a stored procedure that uses two table variables. One gets about 2 or 3 rows inserted, the other gets 0 to 100 rows. Then I select out maybe 20-60 rows from the second, and that's it. </p> <p>Performance is pretty fast. I created a simple app to loop doing queries, and I can do 1300/sec with 1 thread, and around 4000 with 4 threads. </p> <p><strong>Enter tempdb:</strong> When I open the resource monitor to see what's going on, I see that there is a lot of writing to tempdb logfiles. (I created 2, 100MB on 2 different physical disks -they don't seem to grow past 100MB.) There is <em>zero</em> read activity -- the entire DB fits in RAM. </p> <p>With a single thread running queries, there is about 3MB/sec write to tempdb logfiles. As I increase that, it goes up to 20MB/sec per logfile. </p> <p>In the SQL Activity Monitor, "Logging" goes over 300ms/sec for "Wait Time" when I'm using 5 threads. At 3 threads, it's down to 25ms/sec.</p> <p><strong>Question:</strong> What's going on? Why is SQL writing to tempdb logs like crazy, but issuing zero reads (I see no read activity in resource monitor or in activity monitor)? In a non-test environment, it seems to me that having an extra 40MB/sec write might be detrimental to overall performance.</p> <p>I know table variables (@foo) are not always stored in memory, but I'm confused as to why tempdb has to log all this stuff. How can I troubleshoot what it's doing? Can I put tempdb's log on a ramdisk or something? Any other pointers?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/474065/strongly-typing-asp-net-controller-view-method-for-model-type 1 Strongly typing ASP.NET Controller.View() method for model type MichaelGG 2009-01-23T19:03:46Z 2009-08-08T14:00:03Z <p>There's no strongly typed View() method to return an ActionResult. So, suppose I have </p> <pre><code>class Edit : ViewPage&lt;Frob&gt; </code></pre> <p>In my FrobController, I will do something like "return View("Edit", someFrob);". There's no checking going on here, so I have to always manually synchronize the view and controller's use of it. This is suboptimal, and I'm not aware of any built-in fixes.</p> <p>I added this method to my controller base class:</p> <pre><code>public ActionResult ViewPage&lt;V, M&gt;(V view, M model) where V : ViewPage&lt;M&gt; where M : class { return View(typeof(V).Name, model); } </code></pre> <blockquote> <p>Note: The reason I take a view object that's never used is because, AFAIK, there's no way to get C#'s type inference to work otherwise. If I removed the view parameter, I'd need to specify V explicitly, which also means specifying M explicitly too... sigh.</p> </blockquote> <p>So now, I can do this:</p> <pre><code> return ViewPage(new Views.Frob.Edit(), myFrob); </code></pre> <p>I'm specifying the exact view (no problem if it gets renamed), and myFrob is typechecked to be the right model type. The ugly side is that I new up a Edit. Alternatively, I could write:</p> <pre><code> return ViewPage((Views.Frob.Edit)null, myFrob); </code></pre> <p>One downside is that the the model must be an exact match. So with a ViewPage>, I cannot pass in a List. I thought this might work:</p> <pre><code> public ActionResult ViewPage&lt;V, M, T&gt;(V view, T model) where V : ViewPage&lt;M&gt; where M : class where T : M { return View(typeof(V).Name, model); } </code></pre> <p>But C#'s type inference can't figure it out. The other potential problem is that the name of the view type might not be the right name, as I think it can be overridden by attributes. But that's an easy fix if I run into it.</p> <p>Questions:</p> <ol> <li>How can I make this syntax cleaner?</li> <li>What downsides am I missing here?</li> </ol> <p>Edit: With respect to the Controller knowing about the View, it only slightly does. The only thing it gets from the view is the Type, for which it grabs the name. So that's equivalent to passing in the string name. And the strongly typed model, which must match or it'll fail. So it doesn't really know too much about the View -- its just a trick to get the compiler to catch errors.</p> http://stackoverflow.com/questions/1212569/regarding-f-object-oriented-programming/1232815#1232815 2 Answer by MichaelGG for Regarding F# Object Oriented Programming MichaelGG 2009-08-05T12:05:06Z 2009-08-05T12:05:06Z <p>This might not help, but you can make members inline. "member inline private" works fine.</p> http://stackoverflow.com/questions/1135959/f-and-asp-net/1136556#1136556 4 Answer by MichaelGG for F# and ASP.NET MichaelGG 2009-07-16T09:53:10Z 2009-07-16T09:53:10Z <p>Yes. In fact, we're just finishing an app using ASP.NET MVC and NHibernate, with F#. </p> <p>It's pretty easy: create a C# ASP.NET MVC app, then create an F# library, and put all your controllers in the F# library. (F# doesn't have a ASP.NET project type yet.)</p> <p>The benefits are the same as usual -- everything F# provides. Of particular note is how short the controller code becomes. The type inference is just excellent.</p> <p>If you want to use F# record types with the MVC binder, you'll need a bit of helper code. I wrote about it <a href="http://www.atrevido.net/blog/2009/07/16/F+Records+And+ASPNET+MVC+Binding.aspx" rel="nofollow">here</a>. </p> <p>However, with the 1.9.6.16 release, The F# ASPNetCodeDomProvider has some bugs, making it unsuitable for use in the ASPX pages. Also, IntelliSense doesn't work there. So, for the ASPX part, we used C#. Not a big deal, as that's just usually wiring up the model to the view.</p> http://stackoverflow.com/questions/1135165/does-a-lambda-create-a-new-instance-everytime-it-is-invoked/1135380#1135380 2 Answer by MichaelGG for Does a lambda create a new instance everytime it is invoked? MichaelGG 2009-07-16T04:28:09Z 2009-07-16T04:28:09Z <p>Yes, it will cache them when it can:</p> <pre><code>using System; class Program { static void Main(string[] args) { var i1 = test(10); var i2 = test(20); System.Console.WriteLine(object.ReferenceEquals(i1, i2)); } static Func&lt;int, int&gt; test(int x) { Func&lt;int, int&gt; inc = y =&gt; y + 1; Console.WriteLine(inc(x)); return inc; } } </code></pre> <p>It creates a static field, and if it's null, populates it with a new delegate, otherwise returns the existing delegate.</p> <p>Outputs 10, 20, true.</p> http://stackoverflow.com/questions/679602/fastest-way-to-calculate-the-decimal-length-of-an-integer-net 10 Fastest way to calculate the decimal length of an integer? (.NET) MichaelGG 2009-03-24T23:04:45Z 2009-06-20T11:20:21Z <p>I have some code that does a lot of comparisons of 64-bit integers, however it must take into account the length of the number, as if it was formatted as a string. I can't change the calling code, only the function.</p> <p>The easiest way (besides .ToString().Length) is:</p> <pre><code>(int)Math.Truncate(Math.Log10(x)) + 1; </code></pre> <p>However that performs rather poorly. Since my application only sends positive values, and the lengths are rather evenly distributed between 2 and 9 (with some bias towards 9), I precomputed the values and have if statements:</p> <pre><code>static int getLen(long x) { if (x &lt; 1000000) { if (x &lt; 100) return 2; if (x &lt; 1000) return 3; if (x &lt; 10000) return 4; if (x &lt; 100000) return 5; return 6; } else { if (x &lt; 10000000) return 7; if (x &lt; 100000000) return 8; if (x &lt; 1000000000) return 9; return (int)Math.Truncate(Math.Log10(x)) + 1; // Very uncommon } } </code></pre> <p>This lets the length be computed with an average of 4 compares. </p> <p>So, are there any other tricks I can use to make this function faster?</p> <p>Edit: This will be running as 32-bit code (Silverlight).</p> <p>Update:</p> <p>I took Norman's suggestion and changed the ifs around a bit to result in an average of only 3 compares. As per Sean's comment, I removed the Math.Truncate. Together, this boosted things about 10%. Thanks!</p> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987720#987720 0 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T16:40:38Z 2009-06-12T16:40:38Z <p>OK, not a F# language feature, but having IntelliSense in ASPX pages would change my year.</p> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987666#987666 5 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T16:32:07Z 2009-06-12T16:32:07Z <p>Allow automatic upcast to return type, if specified. I know I might sound like a hypocrite given that I usually don't like automatic conversions, but I think if the type of the expression is explicitly specified with #, it'd be ok.</p> <p>I don't want to have to do this:</p> <pre><code>let getEx n : Exception = match n with | 1 -&gt; upcast OutOfMemoryException() | _ -&gt; upcast ArgumentException();; </code></pre> <p>I want this to work:</p> <pre><code>&gt; let getEx n : #Exception = - match n with - | 1 -&gt; OutOfMemoryException() - | _ -&gt; ArgumentException();; | 1 -&gt; OutOfMemoryException() ---------^^^^^^^^^^^^^^^^^^^^^^ stdin(37,10): warning FS0064: This construct causes code to be less generic than indicated by its type annotations. The type variable implied by the use of a '#', '_' or other type annotation at or near 'stdin(35,14)-(35,24)' has been constrained to be type 'OutOfMemoryException'. | _ -&gt; ArgumentException();; ---------^^^^^^^^^^^^^^^^^^^ stdin(38,10): error FS0001: This expression has type ArgumentException but is here used with type OutOfMemoryException </code></pre> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987623#987623 4 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T16:23:47Z 2009-06-12T16:23:47Z <p>The ability to access protected members in lambdas. I can't figure out why it's a restriction, but it's annoying:</p> <pre><code>&gt; type TestEx() = - inherit System.Data.DataException() - member x.ShowHR() = printfn "%A" x.HResult // This is fine - member x.Oops = fun () -&gt; x.HResult // No? Why? - ;; member x.Oops = fun () -&gt; x.HResult // No? Why? ----------------------------^^^^^^^^^ stdin(19,29): error FS0191: The member or object constructor 'HResult' is not accessible. Private members may only be accessed from within the declaring type. Protected members may only be accessed from an extending type and may not be accessed from inner lambda expressions </code></pre> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987598#987598 7 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T16:18:49Z 2009-06-12T16:18:49Z <p>No one has said typeclasses yet?</p> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987569#987569 6 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T16:13:29Z 2009-06-12T16:13:29Z <p>Allow user code to use the same things the F# library can, like static optimizations:</p> <pre><code>&gt; let inline map (f: ^a -&gt; ^b) (xs: ^c) = - Seq.map - when ^c : ^b list = List.map - when ^c : ^b array = Array.map;; when ^c : ^b list = List.map -------^^^^^^^^^^^^ stdin(40,8): error FS0191: Static optimization conditionals are only for use within the F# library </code></pre> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987523#987523 1 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T16:03:56Z 2009-06-12T16:03:56Z <p>Allow cross-file mutually recursive type definitions, or cross-file intrinsic type extensions.</p> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987499#987499 3 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T15:59:40Z 2009-06-12T15:59:40Z <p>Allow \ and . for lambdas instead of fun ->:</p> <pre><code>let id = \x.x </code></pre> <p>Instead of:</p> <pre><code>let id = fun x -&gt; x </code></pre> http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/987488#987488 2 Answer by MichaelGG for What features would you add, remove or change in F#? MichaelGG 2009-06-12T15:58:04Z 2009-06-12T15:58:04Z <p>Remove the C style generic type parameter names from the F# library. 'T 'U 'T1 'T2? 'a and 'b are more readable and fit in with existing literature.</p> http://stackoverflow.com/questions/977071/redirecting-unauthorized-controller-in-asp-net-mvc/985482#985482 2 Answer by MichaelGG for Redirecting unauthorized controller in ASP.NET MVC MichaelGG 2009-06-12T07:37:49Z 2009-06-12T07:37:49Z <p>I had the same issue. Rather than figure out the MVC code, I opted for a cheap hack that seems to work. In my Global.asax class:</p> <pre><code>member x.Application_EndRequest() = if x.Response.StatusCode = 401 then let redir = "?redirectUrl=" + Uri.EscapeDataString x.Request.Url.PathAndQuery if x.Request.Url.LocalPath.ToLowerInvariant().Contains("admin") then x.Response.Redirect("/Login/Admin/" + redir) else x.Response.Redirect("/Login/Login/" + redir) </code></pre> http://stackoverflow.com/questions/952318/what-are-the-benefits-of-using-c-vs-f-or-f-vs-c/973526#973526 4 Answer by MichaelGG for What are the benefits of using C# vs F# or F# vs c#? MichaelGG 2009-06-10T03:13:43Z 2009-06-10T03:13:43Z <p>To answer your question as I understand it: Why use C#? (You say you're already sold on F#.)</p> <p>First off. It's not just "functional versus OO". It's "Functional+OO versus OO". C#'s functional features are pretty rudimentary. F#'s are not. Meanwhile, F# does almost all of C#'s OO features. For the most part, F# ends up as a superset of C#'s functionality.</p> <p>However, there are a few cases where F# might not be the best choice:</p> <ul> <li><p>Interop. There are plenty of libraries that just aren't going to be too comfortable from F#. Maybe they exploit certain C# OO things that F# doesn't do the same, or perhaps they rely on internals of the C# compiler. For example, Expression. While you can easily turn an F# quotation into an Expression, the result is not always exactly what C# would create. Certain libraries have a problem with this. </p> <ul> <li><p>Yes, interop is a pretty big net and can result in a bit of friction with some libraries. </p></li> <li><p>I consider interop to also include if you have a large existing codebase. It might not make sense to just start writing parts in F#.</p></li> </ul></li> <li><p>Design tools. F# doesn't have any. Does not mean it <em>couldn't</em> have any, but just right now you can't whip up a WinForms app with F# codebehind. Even where it is supported, like in ASPX pages, you don't currently get IntelliSense. So, you need to carefully consider where your boundaries will be for generated code. On a really tiny project that almost exclusively uses the various designers, it might not be worth it to use F# for the "glue" or logic. On larger projects, this might become less of an issue.</p> <ul> <li><p>This isn't an intrinsic problem. Unlike the Rex M's answer, I don't see anything intrinsic about C# or F# that make them better to do a UI with lots of mutable fields. Maybe he was referring to the extra overhead of having to write "mutable" and using &lt;- instead of =. </p></li> <li><p>Also depends on the library/designer used. We love using ASP.NET MVC with F# for all the controllers, then a C# web project to get the ASPX designers. We mix the actual ASPX "code inline" between C# and F#, depending on what we need on that page. (IntelliSense versus F# types.)</p></li> </ul></li> <li><p>Other tools. They might just be expecting C# only and not know how to deal with F# projects or compiled code. Also, F#'s libraries don't ship as part of .NET, so you have a bit extra to ship around.</p></li> <li><p>But the number one issue? People. If none of your developers want to learn F#, or worse, have severe difficulty comprehending certain aspects, then you're probably toast. (Although, I'd argue you're toast anyways in that case.) Oh, and if management says no, that might be an issue.</p></li> </ul> <p>I wrote about this a while ago: <a href="http://www.atrevido.net/blog/2008/09/16/Why%2BNOT%2BF.aspx" rel="nofollow">Why NOT F#?</a></p> http://stackoverflow.com/questions/1642853/good-f-programming-books/1643268#1643268 Comment by MichaelGG on Good F# Programming Books MichaelGG 2009-11-02T22:51:32Z 2009-11-02T22:51:32Z Also remember the update of Expert F#, The Definitive Guide to F#: <a href="http://www.apress.com/book/view/9781430224310" rel="nofollow">apress.com/book/view/9781430224310</a> http://stackoverflow.com/questions/1663420/why-cant-i-send-email-with-spsenddbmail-in-sql-server/1663452#1663452 Comment by MichaelGG on Why can't I send email with sp_send_dbmail in Sql Server? MichaelGG 2009-11-02T22:44:10Z 2009-11-02T22:44:10Z Awesome, &quot;Test Subject&quot; doesn't work, but &quot;Screw You&quot; does. http://stackoverflow.com/questions/1645635/create-a-delegate-of-a-generic-function/1645816#1645816 Comment by MichaelGG on Create a delegate of a generic function MichaelGG 2009-10-30T01:28:29Z 2009-10-30T01:28:29Z @Tinister, yea I always end up screwing up bindingflags so I figured I'd make the example really simple :). http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645582#1645582 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-30T01:27:20Z 2009-10-30T01:27:20Z And I'm not saying you should always use exceptions for control flow, just when it's clear. And in this case, knowing that performStep12345 will throw, I think it's extremely clear... http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645582#1645582 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-30T01:26:28Z 2009-10-30T01:26:28Z They don't have to be. OCaml, for example, uses exceptions quite regularly, but their exception speed doesn't suck like .NET's so it's an acceptable solution in more cases. http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645650#1645650 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-30T01:24:43Z 2009-10-30T01:24:43Z &quot;Failure by default&quot;? This lets him throw exceptions from each step as he wanted, while making sure the failure for each step is set. No extra conditionals or more code. C#'s sorta limited when it comes to refactoring at such a small level. http://stackoverflow.com/questions/1645891/why-isnt-except-linq-comparing-things-properly-using-iequatable Comment by MichaelGG on Why isn't .Except (LINQ) comparing things properly? (using IEquatable) MichaelGG 2009-10-29T19:14:43Z 2009-10-29T19:14:43Z TRy using the EqualityComparer.Default directly and see if the mismatch is in that implementation, or with the Linq method, for starters. Then open Reflector and check the source and add a comment to the MSDN docs? http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645582#1645582 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-29T19:09:12Z 2009-10-29T19:09:12Z To clarify, it's just an unfortunate situation that exceptions are so dreadfully slow on .NET that you need to go out of your way to avoid them, even when they would be perfectly clear and a nice choice for flow. http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645543#1645543 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-29T19:00:50Z 2009-10-29T19:00:50Z If you want the bool, just use Func&lt;bool&gt; instead of Action... http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645582#1645582 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-29T19:00:06Z 2009-10-29T19:00:06Z -1 Unless you care about performance, if your code is clearer by using exceptions, <i>then do it</i>. http://stackoverflow.com/questions/1645635/create-a-delegate-of-a-generic-function Comment by MichaelGG on Create a delegate of a generic function MichaelGG 2009-10-29T18:35:05Z 2009-10-29T18:35:05Z You mean so you can have a list of objects and just loop on it, but actually call the specific generic version of the method? http://stackoverflow.com/questions/1645449/refactor-method-with-multiple-return-points/1645543#1645543 Comment by MichaelGG on Refactor method with multiple return points MichaelGG 2009-10-29T18:19:44Z 2009-10-29T18:19:44Z @jheddings as I saw it, any exception triggers the end of processing; just the status changes. @odrade, well the original just had performStep1/2/3()... :) http://stackoverflow.com/questions/1623450/discriminated-unions-in-nhibernate/1639883#1639883 Comment by MichaelGG on Discriminated unions in NHibernate MichaelGG 2009-10-28T23:50:26Z 2009-10-28T23:50:26Z Yep, mapping a single instance should be relatively easy. But what about when a DU contains another DU or something? I think I need some advanced composite user type that's recursive for this sort of thing to fully map properly in all cases. I'm also concerned about how this shows up for doing criteria. http://stackoverflow.com/questions/1623450/discriminated-unions-in-nhibernate Comment by MichaelGG on Discriminated unions in NHibernate MichaelGG 2009-10-28T23:49:01Z 2009-10-28T23:49:01Z @Miguel, yes it compiles down to POCOs, with an inheritance hierarchy (each case is a subclass). So, yes, it's mainly NHibernate. But, I want to make sure we keep the F# feel to everything. http://stackoverflow.com/questions/1623450/discriminated-unions-in-nhibernate Comment by MichaelGG on Discriminated unions in NHibernate MichaelGG 2009-10-28T15:30:35Z 2009-10-28T15:30:35Z Yes, yes it would :). I don't mind sorting things out, I just don't know enough NHibernate to choose the right path.