tbf/TestBenchFramework/BenchControl/IntBox.cs
2014-07-28 09:56:40 +02:00

23 lines
321 B
C#

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();
}
}
}