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

13 lines
279 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-05 19:16:25 +00:00
public interface ILinkedListNode<T>
2022-03-04 16:58:31 +00:00
{
public T? Value { get; set; }
2022-03-05 19:16:25 +00:00
public ILinkedListNode<T>? Next { get; set; }
2022-03-04 16:58:31 +00:00
}
}