blob: 4d5581cf3e1c02f5d2a222ce3a56111496c0c00d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class Example
{
string Method(int RIGHT)
{
lock (this)
{
}
unsafe
{
byte[] bytes = [1, 2, 3];
fixed (byte* pointerToFirst = bytes)
{
}
}
return "ChangeMe";
}
}
|