Skip to content

Instantly share code, notes, and snippets.

@546748946
Last active February 7, 2025 19:38
Show Gist options
  • Save 546748946/5733f3bd1e048fb94cb2e0bd244bd5e2 to your computer and use it in GitHub Desktop.
Save 546748946/5733f3bd1e048fb94cb2e0bd244bd5e2 to your computer and use it in GitHub Desktop.
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