1
vote
1answer
118 views

Functional Exception handling with TryCatchFinally Statement helpers

Hello All, I wrote something to the effect of a try catch finally statement helper in functional style so that I can shorten much of the code I'm writing for my Service Layer that connects to a sql ...
2
votes
2answers
119 views

Option type in C# and implicit conversions

Good morning everyone, I have decided to create a simple Option type for C#. I have essentially based it on the Scala's Option. It was mostly a fun exercise, but it might come in handy at work or ...
1
vote
1answer
358 views

Extending string mapping

Basically I'm trying to generalise and extend the notion of mapping one string into another. There are two methods I often find myself using for this: Functions, and Dictionairies. So here are my 3 ...
4
votes
3answers
491 views

Can this code be made better it's about generating permutations and combinations?

using System; //using System.Linq; using System.Collections; using System.Collections.Generic; namespace Combinatorics { public class Permutation { private int[] data = null; private int ...