protected bool Equals(ClientDependencyPath other)
 {
     return string.Equals(_name, other._name, StringComparison.InvariantCultureIgnoreCase)
            && string.Equals(_path, other._path, StringComparison.InvariantCultureIgnoreCase);
 }
 protected bool Equals(ClientDependencyPath other)
 {
     return(string.Equals(_name, other._name, StringComparison.InvariantCultureIgnoreCase) &&
            string.Equals(_path, other._path, StringComparison.InvariantCultureIgnoreCase));
 }