Agenda 10/3 1. Quiz Review 2. Lab 1 a. Instructions b. Run lab c. Command line arguments 3. Compiling examples a. with VS2005 b. with vS2003 4. C# Program Layout 5. Hello World a. Simplistic b. With using c. Command line arguments d. Return values e. Functions f. Classes 6. Data Types a. Numeric types byte 8-bit unsigned int short 16-bit signed integer int 32-bit signed integer long 64-bit signed integer sbyte 8-bit signed integer ushort 16-bit unsigned integer uint 32-bit unsigned integer ulong 64-bit unsigned integer float 32-bit real number double 64-bit real number decimal 128-bit real number b. Data type functionality Equals Determines whether two instances are equal GetHashCode Serves as a hash function for a particular type GetType Returns the type object for the current instance ToString Returns a human-readable for of the object c. Run DataTypes example