The division operator (/) divides its first operand by its second. All numeric types have predefined division operators.
expr1 / expr2
Where:
User-defined types can overload the / operator (see operator).
// cs_operator_division.cs
using System;
class Test
{
public static void Main()
{
Console.WriteLine(-5/2);
Console.WriteLine(-5.0/2);
}
}
-2 -2.5
C# Operators |