public void Average(int value) { if (this.cnt == 0) this.result = value; else this.result += value; this.cnt++; }