Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
rag-system
rag-system
/
t
/
t4018
/
csharp-exclude-other
Code
Commits
Pulls
CI/CD
81,295
bisect
bisect
jch
maint
master
next
seen
test
todo
text
18 lines
277 Bytes
Copy permalink
Copy
Raw
1
class Example
2
{
3
string Method(int RIGHT)
4
{
5
lock (this)
6
{
7
}
8
unsafe
9
{
10
byte[] bytes = [1, 2, 3];
11
fixed (byte* pointerToFirst = bytes)
12
{
13
}
14
}
15
16
return "ChangeMe";
17
}
18
}