This commit is contained in:
root
2019-08-30 19:30:19 +02:00
commit 6f2b105ca0
595 changed files with 78405 additions and 0 deletions

23
langs/c#/c#.txt Normal file
View File

@ -0,0 +1,23 @@
### C# LANGUAGE ###
# ELEMENT_NAME [optional-css-class] REGULAR_EXPRESSION
NAME C#
VERSION 1.8.1
COMMENT (?default)
PREPROCESSOR (?default)
VERBATIMSTR:STRING (?<!\\)(@\".*?(?<!(\"))\")
STRING (?default)
STATEMENT \b(?alt:statement.txt)\b
RESERVED \b(?alt:reserved.txt)\b
TYPE \b(?alt:type.txt)\b
MODIFIER \b(?alt:modifier.txt)\b
ENTITY (?default)
VARIABLE (?default)
IDENTIFIER (?default)
CONSTANT (?default)
OPERATOR (?default)
SYMBOL (?default)

20
langs/c#/modifier.txt Normal file
View File

@ -0,0 +1,20 @@
protected
readonly
implicit
internal
abstract
volatile
explicit
override
private
virtual
unsafe
sealed
extern
public
extern
static
async
const
fixed
ref

14
langs/c#/reserved.txt Normal file
View File

@ -0,0 +1,14 @@
stackalloc
unchecked
delegate
explicit
checked
nameof
params
typeof
sizeof
await
event
this
base
new

25
langs/c#/statement.txt Normal file
View File

@ -0,0 +1,25 @@
continue
finally
foreach
default
switch
return
using
throw
break
catch
while
lock
case
goto
else
out
try
for
as
if
in
do
is
get
set

28
langs/c#/type.txt Normal file
View File

@ -0,0 +1,28 @@
interface
namespace
operator
decimal
struct
ushort
struct
object
double
string
ulong
sbyte
false
float
class
short
uint
null
bool
true
byte
char
void
long
enum
int
dynamic
var