Initial commit
This commit is contained in:
commit
4dda0d330c
11 changed files with 4624 additions and 0 deletions
34
DigitSequence/DigitEnumerator.cs
Normal file
34
DigitSequence/DigitEnumerator.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
using System.Collections;
|
||||
|
||||
namespace DigitSequence;
|
||||
|
||||
public sealed class DigitEnumerator : IEnumerator<int>
|
||||
{
|
||||
// TODO
|
||||
//private readonly int _number;
|
||||
|
||||
public DigitEnumerator(int number)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
public bool MoveNext()
|
||||
{
|
||||
// TODO
|
||||
return false;
|
||||
}
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
public int Current => -1; // TODO
|
||||
|
||||
object IEnumerator.Current => null!; // TODO
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// TODO ?
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue