C# crash course outline

This commit is contained in:
katiesavage 2022-04-28 15:20:11 -07:00
parent 33520ea1a3
commit 1f722d197c

29
2-csharp/README.md Normal file
View file

@ -0,0 +1,29 @@
# C# Crash Course
## Topics you'll learn
* Language attributes
* Compiled languages
* Syntax basics
* Keywords
* Accessing methods
* Parameters
* Semicolons
* Data types
* Variables
* Arithmetic operators
* Booleans
* Object Oriented Programming
* Records
* Objects
* Properties
* Methods
## Let's get into it!
blah blah blah
## Mini Challenges!
| # | Challenge | Solution | Duration | What you will learn | More information |
|-| ------------------------------- | ------------------------------- | ----------- | -------------------------------------- | - |
1 | [Hello World](https://docs.microsoft.com/learn/modules/csharp-write-first/2-exercise-hello-world/?ns-enrollment-type=learningpath&ns-enrollment-id=learn.languages.csharp-first-steps)| N/A | 3 min | case sensitive, strings, comments | [Intro to C# Tutorial](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/hello-world?WT.mc_id=csharpnotebook-35129-website), [C# documentation](https://docs.microsoft.com/dotnet/csharp/) |
2 | [Variables](https://docs.microsoft.com/learn/modules/csharp-literals-variables/6-challenge )|[Solution](https://docs.microsoft.com/learn/modules/csharp-literals-variables/7-solution)| 5 min | variables, data types, strings, ints, decimals | [Numberic Types](https://docs.microsoft.com/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp?WT.mc_id=csharpnotebook-35129-website), [C# documentation](https://docs.microsoft.com/dotnet/csharp/) |
3 | [Challenge](...)|[Solution](...)| 5 min | topics | [Link](...) |