LaunchCode logo
  1. Contents
  2. 2. Data Types

2. Data Types¶

  • 2.1. Data Types
    • 2.1.1. Static vs. Dynamic Typing
    • 2.1.2. Built-In Types
      • 2.1.2.1. Primitive Types
      • 2.1.2.2. Non-primitive Types
      • 2.1.2.3. Operations
    • 2.1.3. Reference and Value Types
      • 2.1.3.1. Class Types
      • 2.1.3.2. Boxing
    • 2.1.4. Check Your Understanding
  • 2.2. Some C# Practice
    • 2.2.1. Temperature Conversion
    • 2.2.2. using
    • 2.2.3. Declaring Variables
    • 2.2.4. Input / Output and the Console Class
    • 2.2.5. Add Comments to Your Code
    • 2.2.6. Check Your Understanding
  • 2.3. Strings, Characters, and Arrays
    • 2.3.1. Strings and Characters
      • 2.3.1.1. Immutability
      • 2.3.1.2. Single vs. Double Quotation Marks
      • 2.3.1.3. String Manipulation
    • 2.3.2. Arrays
    • 2.3.3. Check Your Understanding
  • 2.4. Objects and Methods, A Primer
    • 2.4.1. Objects
    • 2.4.2. Static Methods
    • 2.4.3. HelloMethods
      • 2.4.3.1. Main Methods
      • 2.4.3.2. Public Methods
      • 2.4.3.3. Try It
    • 2.4.4. Check Your Understanding
  • 2.5. Exercises: Data Types
    • 2.5.1. Input/Output
    • 2.5.2. Numeric Types
    • 2.5.3. More on Numeric Types
    • 2.5.4. Strings
  • 2.6. Studio: Area of a Circle
    • 2.6.1. Calculate the Area of a Circle
    • 2.6.2. More Calculations
    • 2.6.3. Road Trip!
    • 2.6.4. Bonus Missions
  • ← 1.7. C# Naming Conventions
  • 2.1. Data Types →

Back to top

Page Source