示例#1
0
        /// <summary>
        /// Information Expert
        /// </summary>
        public static void GoInformationExpertGetSolderCount()
        {
            Sq      sq      = new Sq();
            Colonel colonel = new Colonel("Пикалов А.В", "Командир роты");

            Console.WriteLine("{0} {1} {2} Снаряжает свое подразделение:", colonel.post, colonel.rank, colonel.name);
            Print(colonel.ToManage(sq));
            Console.WriteLine();
            colonel.GetSqSolderCount(sq);
            Console.ReadKey();
        }