Initial commit almost identical to SVN-repo rev.340
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user