Updated Repo Layout

This commit is contained in:
2022-04-01 22:02:39 +01:00
parent 88d84ab448
commit e5fa390608
9 changed files with 17 additions and 17 deletions

View File

@ -0,0 +1,8 @@
namespace C_.Datastructures.Generic
{
internal class Node<T, NodeType>
{//Generic Node type that every other type inherits from
public T? Value { get; set; } = default;
public NodeType? Next { get; set; } = default;
}
}