mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-02 23:33:45 +00:00
20 lines
309 B
C#
20 lines
309 B
C#
namespace Utils
|
|
{
|
|
public class NumberSource
|
|
{
|
|
private int number;
|
|
|
|
public NumberSource(int start)
|
|
{
|
|
number = start;
|
|
}
|
|
|
|
public int GetNextNumber()
|
|
{
|
|
var n = number;
|
|
number++;
|
|
return n;
|
|
}
|
|
}
|
|
}
|