AjErl.Language.List.List C# (CSharp) Method

List() public method

public List ( object head, object tail ) : System
head object
tail object
return System
        public List(object head, object tail)
        {
            this.head = head;
            this.tail = tail;
        }