מדעי המחשב כיתה יא' עזרה כנסו (סי שארפ - שרשרת חוליות בלע)
איך עושים לקוד הבא מעקב? כיאילו אני מבין מה זה עושה, אבל איך תכלס אני עושה לזה מעקב? public static void Main(string[] args) { IntNode first = new IntNode(3); IntNode current = first; IntNode prev = first; for (int k = 2; k <= 5; k++) { current = new IntNode(k*3); prev.SetNext(current); prev = current; } }