Data.DBInteger.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : DBInteger
return DBInteger
        public static DBInteger operator +(DBInteger x, DBInteger y)
        {
            return new DBInteger(x.Value + y.Value);
        }