18 lines
277 B
Text
18 lines
277 B
Text
class Example
|
|
{
|
|
string Method(int RIGHT)
|
|
{
|
|
lock (this)
|
|
{
|
|
}
|
|
unsafe
|
|
{
|
|
byte[] bytes = [1, 2, 3];
|
|
fixed (byte* pointerToFirst = bytes)
|
|
{
|
|
}
|
|
}
|
|
|
|
return "ChangeMe";
|
|
}
|
|
}
|