7 lines
76 B
C#
7 lines
76 B
C#
|
using System;
|
||
|
|
||
|
public interface IInt32Sequence
|
||
|
{
|
||
|
int GetNext();
|
||
|
}
|