aalhour / C-Sharp-Algorithms

:books: :chart_with_upwards_trend: Plug-and-play class-library project of standard Data Structures and Algorithms in C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SLinkedList bug

gang89liu opened this issue · 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);

}

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

What exactly bug fixing is needed?