DEV Community

Dayton Braison πŸ’»πŸ
Dayton Braison πŸ’»πŸ

Posted on

Learning C# Variables in Public

Variables are used to store data in a program. The name and type of variables in C# must be declared before they can be used. Implicitly typed variables can be declared without knowing its type using var.

Code snippet on how to declare variables in C#

Top comments (0)