Encog.MathUtil.Matrices.Matrix.GetHashCode C# (CSharp) Method

GetHashCode() public method

Generate a hash code, this is just rows+cols. Probably a better way to do this, but I really don't see the Matrix class being used as the key to a hash table.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return Rows + Cols;
        }