Variable: csharp-ts-mode--keywords
csharp-ts-mode--keywords is a variable defined in csharp-mode.el.gz.
Value
("using" "namespace" "class" "if" "else" "throw" "new" "for" "return" "await" "struct" "enum" "switch" "case" "default" "typeof" "try" "catch" "finally" "break" "foreach" "in" "yield" "get" "set" "when" "as" "out" "is" "while" "continue" "this" "ref" "goto" "interface" "from" "where" "select" "lock" "base" "record" "init" "with" "let" "static" "var" "do" "public" "private" "readonly" "unmanaged")
Documentation
C# keywords for tree-sitter font-locking.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/csharp-mode.el.gz
(defvar csharp-ts-mode--keywords
'("using" "namespace" "class" "if" "else" "throw" "new" "for"
"return" "await" "struct" "enum" "switch" "case"
"default" "typeof" "try" "catch" "finally" "break"
"foreach" "in" "yield" "get" "set" "when" "as" "out"
"is" "while" "continue" "this" "ref" "goto" "interface"
"from" "where" "select" "lock" "base" "record" "init"
"with" "let" "static" "var" "do" "public" "private"
"readonly" "unmanaged")
"C# keywords for tree-sitter font-locking.")