Skip to content

Instantly share code, notes, and snippets.

@pmiossec
pmiossec / DisplayStringList.cs
Created July 2, 2012 13:44
Aggregate string to display as a list
var strings = new System.Collections.Generic.List<string> { "item 1", "item 2", "item 3" };
var displayStringList = "list : " + System.Environment.NewLine + "- " + strings.Aggregate((s1, s2) => s1 + System.Environment.NewLine + "- " + s2);
@pmiossec
pmiossec / CheckIban.cs
Last active October 6, 2015 08:38
Check IBAN Validity
using System;
using System.Globalization;
using System.Text.RegularExpressions;
namespace Tools.Service
{
/// <summary>
/// Fonctionalité pour tester le format de la saisie
/// </summary>
public static class Tools