Bloom.UrlPathString.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            var x = obj as UrlPathString;
            if (x == null)
                return false;
            return this.NotEncoded == x.NotEncoded;
        }

Same methods

UrlPathString::Equals ( UrlPathString other ) : bool