DataStructuresCSharp/C#/Datastructures/Nodes/INode.cs

13 lines
259 B
C#
Raw Normal View History

2022-03-04 16:58:31 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace C_.Datastructures.Nodes
{
public interface INode<T>
{
public T? Value { get; set; }
public INode<T>? Next { get; set; }
}
}