System.Web.HttpMultipart.CompareBytes C# (CSharp) Method

CompareBytes() private method

private CompareBytes ( byte orig, byte other ) : bool
orig byte
other byte
return bool
		bool CompareBytes (byte [] orig, byte [] other)
		{
			for (int i = orig.Length - 1; i >= 0; i--)
				if (orig [i] != other [i])
					return false;

			return true;
		}