PeerCastStation.FLV.FLVFileParser.GetUInt32 C# (CSharp) Method

GetUInt32() private static method

private static GetUInt32 ( byte bin ) : long
bin byte
return long
		private static long GetUInt32(byte[] bin)
		{
			return (bin[0]<<24) | (bin[1]<<16) | (bin[2]<<8) | (bin[3]<<0);
		}