Operators
Operators perform operations on operands.
int a = 10, b = 3;Console.WriteLine($"a + b = {a + b}");Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”a + b = 13Operators perform operations on operands.
int a = 10, b = 3;Console.WriteLine($"a + b = {a + b}");dotnet runa + b = 13