4、or 4.{ 5.public void BeforeCall(string operationName, object[] inputs) 6.{ 7.int x = inputs[0] as int; 8.int y = inputs[1] as int; 9.if (x <0
5、
6、 y < 0) 10.{ 11.throw new FaultException("The number can not be less than zero."); 12.} 13.return null; 14.} 1.public void AfterCall(string operationName,