config.toml

 1name = "CSharp"
 2code_fence_block_name = "csharp"
 3grammar = "c_sharp"
 4path_suffixes = ["cs"]
 5line_comments = ["// ", "/// "]
 6autoclose_before = ";:.,=}])>"
 7brackets = [
 8    { start = "{", end = "}", close = true, newline = true },
 9    { start = "[", end = "]", close = true, newline = true },
10    { start = "(", end = ")", close = true, newline = true },
11    { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
12    { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
13    { start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
14]