Sharpen.CRC32.Update C# (CSharp) Method

Update() public method

public Update ( Array values ) : void
values Array
return void
		public void Update (byte[] values)
		{
			this.Update (values, 0, values.Length);
		}

Same methods

CRC32::Update ( Array values, int offset, int Length ) : void
CRC32::Update ( byte value ) : void
CRC32::Update ( int value ) : void

Usage Example

		internal void Crc32(CRC32 @out, long pos, int cnt)
		{
			@out.Update(array, (int)(pos - start), cnt);
		}