public R <ClientInfo> GetClientInfoById(ushort id) { try { return(tsBaseClient.ClientInfo(id)); } catch (Ts3CommandException) { return("No client found."); } }
public ClientInfo GetClientInfoById(ushort id) => tsBaseClient.ClientInfo(id);
public R <ClientInfo> GetClientInfoById(ushort id) => tsBaseClient.ClientInfo(id).ToR("No client found.");