예제 #1
0
파일: JClient.cs 프로젝트: MGanchkov/Chat
 public static bool TryParse(JClient j, out CClient client) => CClient.TryParse(j, out client);
예제 #2
0
파일: JClient.cs 프로젝트: MGanchkov/Chat
 private JClient(CClient value) : this()
 {
     ID   = JID.Value(value.ID);
     Host = JHost.Value(value.Host);
 }
예제 #3
0
파일: JClient.cs 프로젝트: MGanchkov/Chat
 public static JClient Value(CClient client) => new JClient(client);