Initial commit almost identical to SVN-repo rev.340

This commit is contained in:
Milan Hanajik
2014-07-28 09:56:40 +02:00
commit 175a92f633
575 changed files with 186534 additions and 0 deletions
+22
View File
@@ -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();
}
}
}