The parameters of the primary constructor must not be reassigned.
public class TestClass(int i) {
public void TestMethod() {
i = 10;
}
}
public class TestClass(int i) {
private int I = i;
public void TestMethod() {
I = 10;
}
}