mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-03 07:43:52 +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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|