Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Add debug.md file explanation #19

Merged
merged 2 commits into from
Jan 3, 2020
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ Once the user completes the exercise they will be shown this file, which gives t

See the C# floating-point-numbers exercise's [after.md file](./languages/csharp/concept-exercises/numbers-floating-point/.docs/after.md) for an example.

#### `.docs/debug.md`

This file explains how a user that is coding in the browser can still do "debugging."

See the C# floating-point-numbers exercise's [debug.md file](./languages/csharp/concept-exercises/numbers-floating-point/.docs/debug.md) for an example.

## Repository structure

Things are grouped into several subdirectories:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Debug

When a test fails, a message is displayed describing what went wrong and for which input. You can also use the fact that any [console output][programiz.com-basic-input-output] will be shown too. You can write to the console using:

```csharp
Console.WriteLine("Debug message");
```

[docs-string]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
[programiz.com-basic-input-output]: https://www.programiz.com/csharp-programming/basic-input-output
10 changes: 10 additions & 0 deletions languages/csharp/concept-exercises/dates/.docs/debug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Debug

When a test fails, a message is displayed describing what went wrong and for which input. You can also use the fact that any [console output][programiz.com-basic-input-output] will be shown too. You can write to the console using:

```csharp
Console.WriteLine("Debug message");
```

[docs-string]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
[programiz.com-basic-input-output]: https://www.programiz.com/csharp-programming/basic-input-output
10 changes: 10 additions & 0 deletions languages/csharp/concept-exercises/enums/.docs/debug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Debug

When a test fails, a message is displayed describing what went wrong and for which input. You can also use the fact that any [console output][programiz.com-basic-input-output] will be shown too. You can write to the console using:

```csharp
Console.WriteLine("Debug message");
```

[docs-string]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
[programiz.com-basic-input-output]: https://www.programiz.com/csharp-programming/basic-input-output
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Debug

When a test fails, a message is displayed describing what went wrong and for which input. You can also use the fact that any [console output][programiz.com-basic-input-output] will be shown too. You can write to the console using:

```csharp
Console.WriteLine("Debug message");
```

[docs-string]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
[programiz.com-basic-input-output]: https://www.programiz.com/csharp-programming/basic-input-output
10 changes: 10 additions & 0 deletions languages/csharp/concept-exercises/numbers/.docs/debug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Debug

When a test fails, a message is displayed describing what went wrong and for which input. You can also use the fact that any [console output][programiz.com-basic-input-output] will be shown too. You can write to the console using:

```csharp
Console.WriteLine("Debug message");
```

[docs-string]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
[programiz.com-basic-input-output]: https://www.programiz.com/csharp-programming/basic-input-output
10 changes: 10 additions & 0 deletions languages/csharp/concept-exercises/strings/.docs/debug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Debug

When a test fails, a message is displayed describing what went wrong and for which input. You can also use the fact that any [console output][programiz.com-basic-input-output] will be shown too. You can write to the console using:

```csharp
Console.WriteLine("Debug message");
```

[docs-string]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
[programiz.com-basic-input-output]: https://www.programiz.com/csharp-programming/basic-input-output