设计模式_状态模式_C#
摘要:public class Context { private State state; public State State { get { return state; } set { state = value; } } public Context(State state) { this.state = state; } /// /// /// public ...
阅读全文
posted @ 2013-09-09 17:37