Revenj.TreePath.Compare C# (CSharp) Method

Compare() private static method

private static Compare ( string left, string right, int count ) : bool
left string
right string
count int
return bool
        private static bool Compare(string[] left, string[] right, int count)
        {
            for (int i = 0; i < count; i++)
                if (left[i] != right[i]) return false;
            return true;
        }