AjErl.Language.List.List C# (CSharp) 메소드

List() 공개 메소드

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