Sign in
googlers
/
jrn
/
git
/
6c69d3a91f20db5369cc10260f3d24cb9b193cc6
/
.
/
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"
;
}
}