Added comments to StackNode
This commit is contained in:
		@@ -6,8 +6,7 @@ using System.Threading.Tasks;
 | 
			
		||||
namespace C_.Datastructures.Nodes
 | 
			
		||||
{
 | 
			
		||||
    internal class StackNode<T> : Node<T, StackNode<T>>
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
    {//Inherits from Node
 | 
			
		||||
        public static StackNode<T> Create(T? value, StackNode<T>? next)
 | 
			
		||||
        {
 | 
			
		||||
            return new StackNode<T>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user