示例#1
0
        public static void Main()
        {
            Potato potato = new Potato();

            // ... 
            if (potato != null)
            {
                if (potato.HasBeenPeeled && potato.IsNotRotten)
                {
                    Cook(potato);
                }
            }

            // Second half

            int x = 0;
            int y = 0;
            int minX = 0;
            int maxX = 0;
            int minY = 0;
            int maxY = 0;
            bool shouldVisitCell = true;

            bool xIsInRange = (x >= minX && x <= maxX);
            bool yIsInRange = (minY >= y && maxY <= y);

            if (xIsInRange && yIsInRange && shouldVisitCell)
            {
               VisitCell();
            }

        }
示例#2
0
 private static void Cook(Potato potato)
 {
     throw new NotImplementedException();
 }