intro-to-dotnet-web-dev/2-csharp/README.md
2022-04-28 15:20:11 -07:00

29 lines
1.5 KiB
Markdown

# 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](...) |