From 245c09bc0b6f21e51997f81a1feda6c563bd8135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rado=C5=A1=20Mili=C4=87ev?= <40705899+rammba@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:10:51 +0200 Subject: [PATCH] impr(code csharp): add commonly used C# terms (@rammba) (#5916) Hi, I'm glad to contribute to such a great project. Since I'm a C# developer, I've added some commonly used terms like `Func`, `Guid`, `IEnumerable`, `Task`, etc... Also, I've sorted C# words. --- frontend/static/languages/code_csharp.json | 78 +++++++++++++--------- 1 file changed, 45 insertions(+), 33 deletions(-) diff --git a/frontend/static/languages/code_csharp.json b/frontend/static/languages/code_csharp.json index a99b00cb3..1f9b37396 100644 --- a/frontend/static/languages/code_csharp.json +++ b/frontend/static/languages/code_csharp.json @@ -3,10 +3,19 @@ "noLazyMode": true, "words": [ "abstract", + "Action", + "add", + "alias", + "and", + "Array", "as", + "ascending", + "async", + "await", "base", "bool", "break", + "by", "byte", "case", "catch", @@ -18,12 +27,17 @@ "decimal", "default", "delegate", + "descending", "do", "double", + "dynamic", "else", "enum", + "equals", "event", + "Exception", "explicit", + "Expression", "extern", "false", "file", @@ -32,7 +46,15 @@ "float", "for", "foreach", + "from", + "Func", + "get", + "global", "goto", + "group", + "Guid", + "ICollection", + "IEnumerable", "if", "implicit", "in", @@ -40,84 +62,74 @@ "int", "interface", "internal", + "into", "is", + "join", + "let", + "List", "lock", "long", + "nameof", "namespace", "new", "nint", + "not", + "notnull", "nuint", "null", "object", + "on", "operator", + "or", + "orderby", "out", "override", "params", + "partial", "private", "protected", "public", "readonly", + "record", "ref", + "remove", "required", "return", - "scoped", "sbyte", + "scoped", "sealed", + "select", + "set", "short", "sizeof", + "Span", "stackalloc", "static", "string", "struct", "switch", + "Task", "this", "throw", "true", "try", + "Type", "typeof", "uint", "ulong", "unchecked", + "unmanaged", "unsafe", "ushort", "using", + "value", + "var", "virtual", "void", "volatile", - "while", - "add", - "and", - "alias", - "ascending", - "async", - "await", - "by", - "descending", - "dynamic", - "equals", - "from", - "get", - "global", - "group", - "into", - "join", - "let", - "nameof", - "not", - "notnull", - "on", - "or", - "orderby", - "partial", - "record", - "remove", - "select", - "set", - "unmanaged", - "value", - "var", "when", "where", + "while", "with", "yield" ]