示例#1
0
    public Rule(Condition aCon, Action anAction)
    {
        Debug.Assert(null != aCon);
        Debug.Assert(null != anAction);

		con = aCon;
		action = anAction;
	}