Keywords:
*as
*goto
*for
*is
*this
*void
*char
*base
*null
*return
*uint
*int
*var
*lock
*when
*do
*bool
*long
*in
*enum
Returns exits a method.
public int Sum(int valueA, int valueB)
{
return valueA + valueB;
}
public void Terminate(bool terminateEarly)
{
if (terminateEarly) return; // method returns to caller if true was passed in
else Console.WriteLine("Not early"); // prints only if terminateEarly was false
}