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 }