Skip to content

Operators

Operators perform operations on operands.

int a = 10, b = 3;
Console.WriteLine($"a + b = {a + b}");
Terminal window
dotnet run
Terminal window
a + b = 13