2023-03-21 12:20:21 +00:00
|
|
|
|
namespace CodexDistTestCore
|
2023-03-21 07:23:15 +00:00
|
|
|
|
{
|
|
|
|
|
public class NumberSource
|
|
|
|
|
{
|
2023-03-21 14:17:48 +00:00
|
|
|
|
private int number;
|
2023-03-21 07:23:15 +00:00
|
|
|
|
|
2023-03-21 14:17:48 +00:00
|
|
|
|
public NumberSource(int start)
|
2023-03-21 07:23:15 +00:00
|
|
|
|
{
|
2023-03-21 14:17:48 +00:00
|
|
|
|
number = start;
|
2023-03-21 07:23:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 14:17:48 +00:00
|
|
|
|
public int GetNextNumber()
|
2023-03-21 07:23:15 +00:00
|
|
|
|
{
|
2023-03-21 14:17:48 +00:00
|
|
|
|
var n = number;
|
|
|
|
|
number++;
|
|
|
|
|
return n;
|
2023-03-21 07:23:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|