Added comments to StackNode

This commit is contained in:
Luke Else 2022-03-31 21:29:12 +01:00
parent 4fb6d4e15a
commit 40f73375b9

View File

@ -6,8 +6,7 @@ using System.Threading.Tasks;
namespace C_.Datastructures.Nodes
{
internal class StackNode<T> : Node<T, StackNode<T>>
{
{//Inherits from Node
public static StackNode<T> Create(T? value, StackNode<T>? next)
{
return new StackNode<T>