MichaelGG
|
Registered User
|
|
|
Nov 12 |
accepted | Are the functional programming features provided in C# rich enough? What’s missing |
|
Nov 2 |
comment |
Good F# Programming Books Also remember the update of Expert F#, The Definitive Guide to F#: apress.com/book/view/9781430224310 |
|
Oct 30 |
comment |
Create a delegate of a generic function @Tinister, yea I always end up screwing up bindingflags so I figured I'd make the example really simple :). |
|
Oct 30 |
comment |
Refactor method with multiple return points 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... |
|
Oct 30 |
comment |
Refactor method with multiple return points 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. |
|
Oct 30 |
comment |
Refactor method with multiple return points "Failure by default"? 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. |
|
Oct 29 |
accepted | Create a delegate of a generic function |
|
Oct 29 |
comment |
Why isn’t .Except (LINQ) comparing things properly? (using IEquatable) 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? |
|
Oct 29 |
comment |
Refactor method with multiple return points 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. |
|
Oct 29 |
comment |
Refactor method with multiple return points If you want the bool, just use Func<bool> instead of Action... |
|
Oct 29 |
comment |
Refactor method with multiple return points -1 Unless you care about performance, if your code is clearer by using exceptions, then do it. |
|
Oct 29 |
answered | Create a delegate of a generic function |
|
Oct 29 |
comment |
Create a delegate of a generic function 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? |
|
Oct 29 |
answered | Refactor method with multiple return points |
|
Oct 29 |
comment |
Refactor method with multiple return points @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()... :) |
|
Oct 29 |
revised |
Refactor method with multiple return points start with success |
|
Oct 29 |
answered | Refactor method with multiple return points |
|
Oct 28 |
comment |
Discriminated unions in NHibernate 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. |
|
Oct 28 |
comment |
Discriminated unions in NHibernate @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. |
|
Oct 28 |
awarded | ● Nice Question |
|
Oct 28 |
comment |
Discriminated unions in NHibernate Yes, yes it would :). I don't mind sorting things out, I just don't know enough NHibernate to choose the right path. |
|
Oct 28 |
answered | SQL Server developer Edition License and CAL |
|
Oct 28 |
answered | Limiting the size of the managed heap in a C# application |
|
Oct 27 |
answered | What is F# being used for? |
|
Oct 26 |
comment |
Discriminated unions in NHibernate Yes, on our last project we just stuck to plain old object types so that they'd play nicely with NHibernate. This time I would like to branch out a little bit and try some more realistic models. |
|
Oct 26 |
answered | How to invoke methods from constructor in F# |
|
Oct 26 |
comment |
Licensing a SQL Server 2008 for a web site As liggett78 mentiones, multiplexing of any sort doesn't reduce your license count. Otherwise you could pool 10 connections for 10,000 users and say "ha! I only need 10 CALs". You'll want the processor. But definately get BizSpark if this is a newish or smallish company. |
|
Oct 26 |
revised |
Discriminated unions in NHibernate added 89 characters in body |
|
Oct 26 |
comment |
Code Contracts in .NET 4.0, no joy for non-nullable reference types fans? I sure hope no one declares all variables with a value just to "avoid null references". There should be a reason to create a variable and assign a value. If you're not in a position to provide a correct value, then the API/code is quite broken. |
|
Oct 26 |
comment |
Programmatically inspect .NET code Or a compiler :). Yea I uh missed that he said "source code". I guess NDepend and some of the IDE plugins might be of assistance then. Sorry! |
|
Oct 26 |
answered | Methods of simplifying ugly nested if-else trees in C# |
|
Oct 26 |
answered | C# without .NET Framework |
|
Oct 26 |
answered | Programmatically inspect .NET code |
|
Oct 26 |
asked | Discriminated unions in NHibernate |
|
Oct 12 |
awarded | ● Yearling |
|
Oct 1 |
comment |
From OO to functional programming at 10,000 feet C# falls flat on many functional techniques. Extremely limited type inference is just a dealbreaker. Try writing out the type of a function that uses several generic parameters, such as a dictionary of functions. Ouch. |
|
Sep 18 |
comment |
What is F# lacking for OO or imperative? I meant direct "stackalloc" to get a pointer to a block of memory you own on the stack. In F# I suppose you'd have to create a large structure and take its address. But overall it sounds like you're saying that C# doesn't have much advantage, which was my point. |
|
Sep 18 |
revised |
What is F# lacking for OO or imperative? edited tags |
|
Sep 14 |
awarded | ● Nice Question |
|
Sep 10 |
asked | Working with Nullable<’T> in F# |
|
Sep 10 |
comment |
About the non-nullable types debate There are more principled ways of handling "no value". NULL excludes primitive types, such as int. It's better for a type system to represent the lack of value consistently across all types, instead of only implicitly for references. See Haskell's "Maybe" and ML/OCaml/F#'s "option" types to see how it should be done. |
|
Sep 8 |
comment |
Is it possible to speed up the F# compiler? That's a very cute hack! |
|
Sep 4 |
awarded | ● Nice Answer |
|
Sep 3 |
comment |
F# : Accessing public readonly members of structs in external assemblies Heh, now your useless link creates and endless loop as this is the only result. |
|
Aug 30 |
accepted | What C# 4.0 features can be used while still targeting the .NET 3.5 runtime? |
|
Aug 24 |
accepted | Is a good idea to build in-memory indexes and circumvent the DB when operating intensively on a small subset? |
|
Aug 23 |
asked | Large amount of tempdb log writing, no reading |
|
Aug 22 |
comment |
What is F# lacking for OO or imperative? Yes I am afraid I didn't make my viewpoint very clear. I'm not complaining about F# or criticising it - just pointing out the differences. My real question is "why is C# more suited for UI than F#", or something to that effect. I definately don't believe it's the case that C# is often or ever the "right tool". I just wanted to see if someone could back that up. (I feel sick when I have to write in C#. Even if I'm going to write "C#", I'd rather do it in F# and have inference, pattern matching, etc.) |
|
Aug 21 |
awarded | ● Popular Question |
|
Aug 18 |
comment |
How to deal with abnormal input and stop running the rest of a function in F#? No, you can't just do "if condition then ()" because that will evaluate completely to a unit and be ignored if it's not the last expression. You need an else, that goes to the rest of the function. For example * let test x = if String.IsNullOrEmpty x then () ; printfn "got a value"; printfn "last bit of work";; * if you replace else with ;, you'll see you end up printing both lines regardless of the input. |
