Data Types C#

//http://walkmen.codeplex.com/license
// License:  GNU General Public License version 2 (GPLv2)  
using System;
using System.Collections.Generic;
using System.Text;
namespace Walkmen.Util
{
    public sealed class NumericUtils
    {
        private NumericUtils()
        {
        }
        public static short ReadShort(byte[] buffer, int offset)
        {
            return (short)((buffer[offset + 0] << 8) + buffer[offset + 1]);
        }
   }
}