GitSharp.Ref.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            var id = _repo._internal_repo.Resolve(Name);
            if (id != null)
                return id.GetHashCode();
            return base.GetHashCode();
        }