MCLawl.CommandList.commandNames C# (CSharp) 메소드

commandNames() 공개 메소드

public commandNames ( ) : List
리턴 List
        public List<string> commandNames()
        {
            List<string> tempList = new List<string>();

            commands.ForEach(delegate(Command cmd)
            {
                tempList.Add(cmd.name);
            });

            return tempList;
        }