Exemplo n.º 1
0
 public static PrivateMessage Find(string sender, string target) => PM.Find(x =>
                                                                            (x.participants.Key == sender && x.participants.Value == target) ||
                                                                            (x.participants.Key == target && x.participants.Value == sender)
                                                                            );