Sign in
googlers
/
jrn
/
git
/
bf995e7a4f94a9388aa8042dc9e338f3fcb75496
/
.
/
t
/
t4018
/
csharp-exclude-other
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"
;
}
}