1# C#
2
3Note language name is "CSharp" for settings not "C#'
4
5C# support is available through the [C# extension](https://github.com/zed-industries/zed/tree/main/extensions/csharp).
6
7- Tree Sitter: [tree-sitter/tree-sitter-c-sharp](https://github.com/tree-sitter/tree-sitter-c-sharp)
8- Language Server: [OmniSharp/omnisharp-roslyn](https://github.com/OmniSharp/omnisharp-roslyn)
9
10## Configuration
11
12The `OmniSharp` binary can be configured in a Zed settings file with:
13
14```jsonc
15{
16 "lsp": {
17 "omnisharp": {
18 "binary": {
19 "path": "/path/to/OmniSharp",
20 "args": ["optional", "additional", "args", "-lsp"],
21 },
22 },
23 },
24}
25```