4 lines
60 B
C#
4 lines
60 B
C#
|
|
public void Method(in int x) {
|
||
|
|
x = 5; //Compile error
|
||
|
|
}
|