Plus (For modes 2D, 3D, Console)
Addition operator. Both binary and unary operator.
Unary + is defined for all numeric types. Result of this operation is the original value.
Binary + is defined for numeric and string types. When both operands are numeric, result is typical addition of their values. When at least one of the operands is string, the remaining one is converted into string and the result is junction of two strings into one.
Was this helpful?
Minus (For modes 2D, 3D, Console)
Subtraction operator. Both binary and unary operator.
Unary - is defined for all numeric types. Result of this operation is opposite value to the original one.
Binary - is defined for all numeric types. Result of this operation is typical subtraction of the operands.
Was this helpful?
Multiply (For modes 2D, 3D, Console)
Result is classic product.
Was this helpful?
Division (For modes 2D, 3D, Console)
Division operator. Result is quotient, its value and type depends on the types of the operands.
If at least one of the operand is real number, the result will be exact quotient - real number. If both operands are whole numbers, the result will be the integral division, i.e. what will remain from the quotient after removing the decimal part of the result.
Was this helpful?
Modulus (For modes 2D, 3D, Console)
Modulo is remainder after division of the left expression by the right expression.
Was this helpful?
Increment (For modes 2D, 3D, Console)
Increase given operand by 1.
Was this helpful?
Decrement (For modes 2D, 3D, Console)
Decrease given operand by 1.
Was this helpful?


Did you find this information useful?
Documentation of SGP Baltie 4 C#
Send us comments on this topic by this form ©1978-2010 SGP Systems

Parent page | Previous page | Next page