这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Samples/Beginners/HelloWorld.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Console.WriteLine("Hello World!");
Congratulations! You've run your first C# program. It used the Console.WriteLine method to print `Hello World`. `Console` is a type that represents the console window. `WriteLine` is a method of the `Console` type that prints a line of text.


#### Next: [Strings & Variables »](./Strings.md) Previous: [Home «](../README.md)
#### Next: [Strings & Variables »](./Strings.md) Previous: [Home «](../Readme.md)
2 changes: 1 addition & 1 deletion Samples/Beginners/Methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ Replace the *name* variable with a *names* variable that has a list of names. Th
Console.WriteLine($"Hello {name.ToUpper()}!");
}
```
#### Previous - [Strings & Variables «](./Strings.md) Home - [Home](../README.md)
#### Previous - [Strings & Variables «](./Strings.md) Home - [Home](../Readme.md)
2 changes: 1 addition & 1 deletion Samples/Beginners/Strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ Start with including a `$` before the opening quotes of the string. Now, place a
var name = "Rain";
Console.WriteLine($"Hello {name}!");
```
#### Next: [Methods »](./Methods.md) Previous: [Hello World «](./HelloWorld.md) Home - [Home](../README.md)
#### Next: [Methods »](./Methods.md) Previous: [Hello World «](./HelloWorld.md) Home - [Home](../Readme.md)
2 changes: 1 addition & 1 deletion Samples/Beginners/TeachTheComputer-formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Then, replace all instances of `5` with `MaxRows`. Now, if you change `MaxRows`,

You've finished this tutorial. You've taught the computer to do some of your math homework.

#### Previous: [Build the triangle «](./TeachTheComputer-repetition-2.md) Home: [Home](../README.md)
#### Previous: [Build the triangle «](./TeachTheComputer-repetition-2.md) Home: [Home](../Readme.md)
2 changes: 1 addition & 1 deletion Samples/Beginners/TeachTheComputer-repetition-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ for (int column = 1; column < rowIndex; column++)

Try to modify the sample at the top of the page using these instructions. Then continue to see the answer and improve the formatting.

#### Next: [Improve formatting &raquo;](./TeachTheComputer-formatting.md) Previous: [Less repetition &laquo;](./TeachTheComputer-repetition.md) Home: [Home](../README.md)
#### Next: [Improve formatting &raquo;](./TeachTheComputer-formatting.md) Previous: [Less repetition &laquo;](./TeachTheComputer-repetition.md) Home: [Home](../Readme.md)
2 changes: 1 addition & 1 deletion Samples/Beginners/TeachTheComputer-repetition.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ foreach (int[] row in triangle)

Try to modify the sample at the top of the page using these instructions. Run when you don't have red squiggles under your code. If the output window turns red, you may have the wrong indices in your array. Once you've got this working, continue for a bit more changes.

#### Next: [Build the triangle &raquo;](./TeachTheComputer-repetition-2.md) Previous: [Teach the computer &laquo;](./TeachTheComputer.md) Home: [Home](../README.md)
#### Next: [Build the triangle &raquo;](./TeachTheComputer-repetition-2.md) Previous: [Teach the computer &laquo;](./TeachTheComputer.md) Home: [Home](../Readme.md)
2 changes: 1 addition & 1 deletion Samples/Beginners/TeachTheComputer.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ A good way to teach the computer is to start by exploring the problem yourself.

The format of the output doesn't form a nice triangle yet. Let's concentrate on the values first. Try and add a couple more rows to the triangle. Copy and paste the `row2` line and add rows 3 and 4. Do the same with the `foreach` loops that write the values.

#### Next: [Less repetition &raquo;](./TeachTheComputer-repetition.md) Home: [Home](../README.md)
#### Next: [Less repetition &raquo;](./TeachTheComputer-repetition.md) Home: [Home](../Readme.md)