示例#1
0
 public bool Equals(OAuthConsumer other)
 {
     return other != null &&
            String.Equals(key, other.Key) &&
            String.Equals(secret, other.Secret) &&
            status == other.Status;
 }