2 instantiations of Node
System.Windows.Forms.Primitives (2)
System\Windows\Forms\SinglyLinkedList.cs (2)
22Node node = new(value); 42Node node = new(value);
14 references to Node
System.Windows.Forms.Primitives (14)
System\Windows\Forms\RefCountedCache.cs (2)
91var node = enumerator.Current; 158var node = enumerator.Current;
System\Windows\Forms\SinglyLinkedList.cs (12)
17public Node? First { get; private set; } 18public Node? Last { get; private set; } 20public Node AddFirst(T value) 22Node node = new(value); 40public Node AddLast(T value) 42Node node = new(value); 65public Node? Next { get; set; } 68public static implicit operator T(Node? node) => node is null ? default! : node.Value; 76private Node? _current = null; 77private Node? _previous = null; 79public readonly Node Current => _current!; 166Node? next = _current.Next;