mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
20 lines
321 B
C#
20 lines
321 B
C#
namespace CodexDistTestCore
|
|
{
|
|
public class NumberSource
|
|
{
|
|
private int number;
|
|
|
|
public NumberSource(int start)
|
|
{
|
|
number = start;
|
|
}
|
|
|
|
public int GetNextNumber()
|
|
{
|
|
var n = number;
|
|
number++;
|
|
return n;
|
|
}
|
|
}
|
|
}
|