Skip to content

代码 Code

源码:

行内 `code`。围栏代码块保留缩进:
```csharp
public static string Greet(string name)
{
return $"Hello, {name}!";
}
```
```bash
dotnet build YASN.sln -c Release
```

渲染效果:

行内 code。围栏代码块保留缩进:

public static string Greet(string name)
{
return $"Hello, {name}!";
}
Terminal window
dotnet build YASN.sln -c Release