tbf/TestBenchFramework/BenchControl/IntBox.cs

23 lines
321 B
C#
Raw Normal View History

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