C#: Calcule de CRC

{filelink=17832}
// StrangeCRC.cs - computes a crc used in the bziplib
//
// Copyright (C) 2001 Mike Krueger
//
// This file was translated from java, it was pa

Verifier la syntaxe d’un email

{filelink=18790}

using System;
using System.Text.RegularExpressions;

namespace AroLibraries.ExtensionMethods.Strings
{
    public static class StringExt
    {

Affichage de Date en format Long

{filelink=19656}
using System;

class DateLong
{

    public static void Main()
    {
       Console.WriteLine("(D)Date Format Long: {0:D}",DateTime.Now);
    }