예제 #1
0
 public bool Equals(X2XServiceInvocation other)
 {
     return(other != null &&
            invocationId == other.invocationId &&
            serviceGuid.Equals(other.serviceGuid) &&
            methodName.Equals(other.MethodName) &&
            genericArguments.Equals(other.genericArguments) &&
            methodArguments.Equals(other.methodArguments));
 }