# File lib/chef/win32/security/acl.rb, line 46
        def ==(other)
          return false if length != other.length
          0.upto(length-1) do |i|
            return false if self[i] != other[i]
          end
          return true
        end