NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

/ Operator

The division operator (/) divides its first operand by its second. All numeric types have predefined division operators.

User-defined types can overload the / operator (see operator).

Example

using System;
class Test {
   public static void Main() {
      Console.WriteLine(-5/2);
      Console.WriteLine(-5.0/2);
   }
}

Output

-2
-2.5

See Also

C# Operators | CLR 7.7.2 Division operator