Last active
February 7, 2025 19:38
-
-
Save 546748946/5733f3bd1e048fb94cb2e0bd244bd5e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ConsoleApp1 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int age = 18; | |
uint count = 1234; | |
bool isOpen = true; | |
byte coin = 7; | |
float diameter = 1.78; | |
var hello = "Hell to World"; | |
long year = 2025; | |
string name = 'Tom'; | |
short weight = 63; | |
ushort height = 181; | |
char symbol = 'A'; | |
object pi = 3.14; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment