public void PrecInit() { this.Prec = new GeStorage[64][]; for (int index1 = 0; index1 < 64; ++index1) { this.Prec[index1] = new GeStorage[16]; for (int index2 = 0; index2 < 16; ++index2) { this.Prec[index1][index2] = new GeStorage(); } } this.Blind = new Scalar(); this.Initial = new GeJ(); }
public void PrecInit() { Prec = new GeStorage[64][]; for (var i = 0; i < 64; i++) { Prec[i] = new GeStorage[16]; for (int j = 0; j < 16; j++) { Prec[i][j] = new GeStorage(); } } Blind = new Scalar(); Initial = new GeJ(); }