blob: 4d5581cf3e1c02f5d2a222ce3a56111496c0c00d [file] [log] [blame]
class Example
{
string Method(int RIGHT)
{
lock (this)
{
}
unsafe
{
byte[] bytes = [1, 2, 3];
fixed (byte* pointerToFirst = bytes)
{
}
}
return "ChangeMe";
}
}