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).
using System; class Test { public static void Main() { Console.WriteLine(-5/2); Console.WriteLine(-5.0/2); } }
-2 -2.5
C# Operators | CLR 7.7.2 Division operator