コード例 #1
0
ファイル: Interpreter.cs プロジェクト: mkader/Design-Patterns
 public bool Interpret(string context)
 {
     return(Exp1.Interpret(context) && Exp2.Interpret(context));
 }