§/* … */ and
//… specify that … are comments
§C# is
case-sensitive (for keywords and variables)
§Statements end
with ; (semi-colon) and can be continued on subsequent lines without a continuation character
§using XYZ; specifies that XYZ is the default namespace for referenced classes (subnamespaces can be specified;
e.g., after using System,
referencing DateTime.Now is equivalent to referencing System.DateTime.Now)
§namespace ABC
{….} specifies that …. are classes in
namespace ABC
§class PQR {…} says that … are the properties and methods of class PQR