AIMA.Core.Logic.FOL.Parsing.AST.ConnectedSentence.getArgs C# (CSharp) 메소드

getArgs() 공개 메소드

public getArgs ( ) : List
리턴 List
        public List<FOLNode> getArgs()
        {
            Sentence[] copy = new Sentence[args.Count];
            args.CopyTo(copy);
            return new List<FOLNode>(copy);
        }