快速入门 - 学习 C# 编程
Quick Start - Learn programming in C#
- 1. Motivation & Introduction
- 1. What requirements should you bring along
- 2. What is Programming
- 1. Install “Coder for C#”
- 2. Your first program
- 3. What is a program
- 5. Can I also program my own Functions
- 6. Where do the previous used functions come from
- 7. Pong Game 1
- 8. Other graphical shapes
- 9. Draw a smiley
- 3. Variables and Operators
- 1. What are variables and data types
- 2. Numbers
- 3. What other data types are there
- 4. What other operators are there
- 5. Predefined variables
- 7. Pong Game 2 – The racket
- 8. Pong Game 3 – The ball
- 9. Pong Game 4 – Racket and ball
- 4. Conditional Statements
- 1. Conditional statement if…else…
- 3. Logical connectives
- 5. Keyboard input
- 6. Pong Game 5 – Ball bounces
- 7. Pong Game 6 – Racket hits ball
- 8. Pong Game 7 – …a few more gimmicks
- 5. Repeat Statements (Loops)
- 1. What is a loop
- 2. while loop
- 4. for loop
- 6. Pong Game 8 – 3D ball
- 7. Pong Game 9 – Own functions with parameters
- 6. Objects
- 1. What is a programming paradigm
- 2. Programming with objects, classes and instances
- 3. How to create a class in C#
- 4. How to create an instance from a class
- 5. The canvas as a class
- 6. Pong Game 10 – The ball as an object
- 7. Pong Game 11 – The racket as an object
- 8. Pong Game 12 – Pong Game for professionals
- 9. That's it…