23 lines
321 B
C#
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();
|
|
}
|
|
}
|
|
}
|