System.Web.HttpMultipart.CompareBytes C# (CSharp) 메소드

CompareBytes() 개인적인 메소드

private CompareBytes ( byte orig, byte other ) : bool
orig byte
other byte
리턴 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;
		}