DataStructuresCSharp/C#/Datastructures/Nodes/ILinkedListNode.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
{
2022-03-06 09:10:17 +00:00
public interface INode<T>
2022-03-04 16:58:31 +00:00
{
public T? Value { get; set; }
2022-03-06 09:10:17 +00:00
public INode<T>? Next { get; set; }
2022-03-04 16:58:31 +00:00
}
}