More actions
Updated via bot |
(No difference)
|
Latest revision as of 16:09, 21 October 2025
Showing the value of a variable on the console.
Print a Variable in C#
Print a Variable in C# using Concatenation
💻 C#
int score = 0;
Console.WriteLine("Score: " + score);
🖨️ Console
Score: 0
Related Concepts
- Uses: Concatenation
- Uses: Variable