Added GenericNode outline
This commit is contained in:
		
							
								
								
									
										14
									
								
								C#/Datastructures/Nodes/Node.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								C#/Datastructures/Nodes/Node.cs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
using System;
 | 
			
		||||
using System.Collections.Generic;
 | 
			
		||||
using System.Linq;
 | 
			
		||||
using System.Text;
 | 
			
		||||
using System.Threading.Tasks;
 | 
			
		||||
 | 
			
		||||
namespace C_.Datastructures.Nodes
 | 
			
		||||
{
 | 
			
		||||
    internal class Node<T, NodeType>
 | 
			
		||||
    {
 | 
			
		||||
        public T? Value { get; set; } = default;
 | 
			
		||||
        public NodeType? Next { get; set; } = default;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user