mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-03 05:53:12 +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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|