C-Sharp-Algorithms icon indicating copy to clipboard operation
C-Sharp-Algorithms copied to clipboard

SLinkedList bug

Open gang89liu opened this issue 5 years ago • 2 comments

when code write is var s = new SLinkedList(); foreach (var item in s) { Console.WriteLine(item); }

function MoveNext _current is null

public bool MoveNext() { _current = _current.Next;

 return (this._current != null);

}

gang89liu avatar Aug 21 '20 08:08 gang89liu

Thanks for supporting the development of C# Algorithms with your first issue! We look forward to handling it.

github-actions[bot] avatar Aug 21 '20 08:08 github-actions[bot]

What exactly bug fixing is needed?

ikp1997 avatar Sep 11 '20 20:09 ikp1997