c# Programming Glossary: discriminated
Best approach for designing F# libraries for use from both F# and C# http://stackoverflow.com/questions/10110174/best-approach-for-designing-f-libraries-for-use-from-both-f-and-c-sharp option values as arguments. Discriminated unions F# Do use discriminated unions as an alternative to class hierarchies for creating tree.. data C# no specific guidelines for this but the concept of discriminated unions is foreign to C# Curried functions F# curried functions.. in a functional style using F# function types tuples discriminated unions etc. .NET library is designed to be used from any .NET..
switch / pattern matching idea http://stackoverflow.com/questions/156467/switch-pattern-matching-idea it allows match by type with full coverage checking for discriminated unions note this also infers the type for the bound variable..
How can I duplicate the F# discriminated union type in C#? http://stackoverflow.com/questions/2320919/how-can-i-duplicate-the-f-discriminated-union-type-in-c can I duplicate the F# discriminated union type in C# I've created a new class called Actor which.. void Dispose IDisposable CompleteEvent .Dispose c# f# discriminated union share improve this question In your example code you..
Discriminated union in C# http://stackoverflow.com/questions/3151702/discriminated-union-in-c-sharp comment informed me apparently this structure is called a 'discriminated union' Excuse the verbosity of this question. There are a couple.. in the first place Thanks in advance. c# type safety discriminated union share improve this question I don't really like the..
Reflection for F# units of measure http://stackoverflow.com/questions/4005474/reflection-for-f-units-of-measure and F# reflection which provides information about discriminated unions records etc. Microsoft.FSharp.Reflection . Unfortunatelly..
|