Data Types C#

using System;
using System.Collections.Generic;
using System.Text;
namespace s3
{
    static class Utils
    {
        public static string BytesToHex(byte[] bytes)
        {
            return String.Concat(Array.ConvertAll(bytes, delegate(byte x) { return x.ToString("X2"); }));
        }
    }
}