AjErl.Language.List.List C# (CSharp) Méthode

List() public méthode

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