Added GenericNode outline
This commit is contained in:
parent
de0f4195ed
commit
ea5d5a73ed
14
C#/Datastructures/Nodes/Node.cs
Normal file
14
C#/Datastructures/Nodes/Node.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace C_.Datastructures.Nodes
|
||||
{
|
||||
internal class Node<T, NodeType>
|
||||
{
|
||||
public T? Value { get; set; } = default;
|
||||
public NodeType? Next { get; set; } = default;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user