GetHashCode() public method

public GetHashCode ( ) : int
return int
        public void HashCodeIsCachedProperly()
        {
            var dims = new TensorDimensions(3, 5, 7);

            int hashCode = dims.GetHashCode();
            Assert.Equal(hashCode, dims.GetHashCode());
        }