Also, I did not add this because it might be covered later, but there is an additional type of comment that is meant to document the code and provide IntelliSense support. You get this when you use three slashes above a method, class or property.
///
/// Convert Fahrenheit into Celsius.
///
public static void Main(string[] args)
Added an example of boxing and unboxing.
Also, I did not add this because it might be covered later, but there is an additional type of comment that is meant to document the code and provide IntelliSense support. You get this when you use three slashes above a method, class or property.
///
/// Convert Fahrenheit into Celsius.
///
public static void Main(string[] args)