I have implemented a custom linked list and I am having trouble implementing the IEnumerator<>. Specifically, the compiler tells me The name "GetEnumerator" does not exist in the current context
. I feel like I'm implementing it exactly how I have seen in numerous stackoverflow posts and tutorials, what am I missing?
Here is my data structure:
namespace TestReportCreator_v3
{
public class FindingsTable : IEnumerable<string>
{
private Node head, mark;
public class Node
{
public string description; //covers weakness, retinaDesc, nessusDesc
public string riskLevel; //covers impactLevel, retinaRisk, nessusRisk
public string boxName; //box name results apply to
public string scanner; //wassp, secscn, retina, nessus
public string controlNumber; //ia control number impacted, wassp and secscn only
public string fixAction; //comments, retinaFix, nessusSolu
public string auditID; //nessus plugin, retina AuditID, wassp/secscn test number
public Node next;
public Node(string auditID, string riskLevel, string boxName, string scanner, string controlNumber, string fixAction, string description, Node next)
{
this.description = description;
this.riskLevel = riskLevel;
this.boxName = boxName;
this.scanner = scanner;
this.controlNumber = controlNumber;
this.fixAction = fixAction;
this.auditID = auditID;
this.next = next;
}
}
...insert, delete, update, save methods...
public IEnumerator<string> IEnumerable<string>.GetEnumerator()
{
var node = mark;
while (node != null)
{
yield return node.riskLevel;
node = node.next;
}
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
}