1
0
Fork 0
git/t/t4018/csharp-exclude-other
Daniel Baumann 54102a2c29
Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:39 +02:00

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";
}
}