ms_learn_csharp/README.md

36 lines
2.2 KiB
Markdown
Raw Normal View History

2024-07-19 20:30:50 -04:00
# Get Starting C#
Following
[freecodecamp](https://www.freecodecamp.org/learn/foundational-c-sharp-with-microsoft/)
## Foundational C# with Microsoft
2024-07-29 01:49:26 -04:00
1. [First Code](./001_first_code/001_csharp.md)
2. [Store and retrieve data](./002_Store_retrieve_data_using_literal_and_variable/002_csharp.md)
3. [Basic String Formating](./003_Basic_string_formatting/003_csharp.md)
4. [Basic operations on numbers](./004_Basic_operation_on_numbers/004_csharp.md)
5. [Calculate and print student grades](./005_Calc_and_print_grades/005_csharp.md)
6. [Calculate students final GPA](./006_Calc_final_GPA/006_csharp.md)
7. [Call methods from the .NET Class Library](./007_Methods_net_class/007_csharp.md)
8. [if and if else](./008_if_else/008_csharp.md)
9. [array and foreach](./009_arrays_forearc/009_csharp.md)
10. [Conventions](./010_conventions/010_csharp.md)
11. [Guided Project - foreach](./011_foreach_array_1/011_csharp.md)
12. [Challenge Project - foreach](./012_foreach_array_2/012_csharp.md)
13. [Evaluate Boolean expressions](/013_eval_boolean_expressions/013_csharp.md)
14. [Control variable scope and logic](/014_scope_and_logic/014_csharp.md)
15. [switch case construct](./015_switch_case/015_csharp.md)
16. [FizzBuzz Challenge](./016_Iterate_using_for_statement/016_csharp.md)
17. [Looping logic using the do-while and while](./017_Looping_logic_using_do-while_and_while/017_csharp.md)
18. [Conditional branching and looping](./018_Conditional_branching_and_looping/018_csharp.md)
19. [Branching and looping structures](./019_branching_and_looping_structures/019_csharp.md)
20. [Choose the correct data type](./020_data_types/020_csharp.md)
21. [Convert data types](./021_Casting_and_conversion_techniques/021_csharp.md)
2024-07-31 22:38:31 -04:00
22. [Array Operations](./022_array_operations/022_csharp.md)
2024-08-04 14:06:59 -04:00
23. [Format alphanumeric data](./023_alphanumeric_data_format/023_csharp.md)
24. [String data type methods](./024_String_data_type_methods/024_csharp.md)
25. [Work with variable data](./025_Work_with_variable_data/025_csharp.md)
2024-08-08 00:20:43 -04:00
26. [Challenge - variable data](./026_Challenge_variable_data/026_csharp.md)
27. [Create methods](./027_create_methods/027_csharp.md)
2024-08-10 23:44:42 -04:00
28. [Methods with parameters](./028_method_parameters/028_csharp.md)