Updated Repo Layout
This commit is contained in:
		
							
								
								
									
										8
									
								
								C#/Datastructures/Generic/Node.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								C#/Datastructures/Generic/Node.cs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
namespace C_.Datastructures.Generic
 | 
			
		||||
{
 | 
			
		||||
    internal class Node<T, NodeType>
 | 
			
		||||
    {//Generic Node type that every other type inherits from
 | 
			
		||||
        public T? Value { get; set; } = default;
 | 
			
		||||
        public NodeType? Next { get; set; } = default;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user