fix: use proper csharp codeblock (#64550)

This commit is contained in:
Simon Criado
2025-12-12 12:26:55 +01:00
committed by GitHub
parent aff30db058
commit c425156fc7
3 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ Complete the <a href="https://learn.microsoft.com/training/modules/create-c-shar
Given the method signature,
```clike
```csharp
void Print(string name, string number = "", bool member = false)
```

View File

@@ -22,7 +22,7 @@ Complete the <a href="https://learn.microsoft.com/training/modules/guided-projec
What is wrong with the following code?
```clike
```csharp
int sophiaSum;
Console.WriteLine("Sophia: " + sophiaSum);
```

View File

@@ -22,7 +22,7 @@ Complete the <a href="https://learn.microsoft.com/training/modules/csharp-basic-
What is the value of the following result?
```clike
```csharp
int result = 3 + 1 * 5 / 2;
```