摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace StateMachine{ class Program { static void Main(string[] args) { var door = new Door(State.Open); while (true) { string s = Console.ReadLine(... 阅读全文
posted @ 2013-06-26 10:28 Ethan.Sun 阅读(244) 评论(0) 推荐(0) 编辑