using System;
public class Program
{
public static void Main()
// Variables names are written in camelCase.
string myName = "Adam Willis";
// depending on the variable name and scope,
// Try to not be to short to ambiguous or to explicit.
// good to be consistant.
//
double t = 25.5; // To short.
double temp = 25.5; // Confusing temperature or temporal?
double temperature = 25.5; // Acceptable
double roomTemp = 25.5; // Better, but maybe to explicit out the room.
double roomTemperature = 25.5; // Maybe to long, but OK. better thannot understanding at all.
// Methods/functions() use written in PascalCase.
Console.WriteLine("Console and WriteLine are written in PascalCase");
Console.WriteLine("Just like AdamWillis");
}