namespace TBF.BenchControl { public class IntBox { public int N; public IntBox() { N = 0; } public IntBox(int n) { N = n; } public override string ToString() { return N.ToString(); } } }