ᅠ
Size: a a a
ᅠ
ᅠ
KG
KG
🤮А
Ꮓ
D
D
Ꮓ
public IEnumerable<T> ShowList<T>() where T : class
{
if (count == 0)
{
throw new Exception("The List is empty");
}
else
{
while (head.Next != null)
{
yield return head.Data;
}
}
}
Ꮓ
Ꮓ
Ꮓ
Б
D
public IEnumerable<T> ShowList<T>() where T : class
{
if (count == 0)
{
throw new Exception("The List is empty");
}
else
{
while (head.Next != null)
{
yield return head.Data;
}
}
}
D
Ꮓ
Ꮓ
D
D
D