public void ShowRace(IRaceInfo race) { var raceId = race.Id; var url = string.Format("http://speedrun.tv/race:{0}", raceId); Process.Start(url); }
public void ShowRace(IRaceInfo race) { var builder = new StringBuilder(); builder.Append("http://multitwitch.tv/"); foreach (var stream in race.LiveStreams) { builder.Append(stream); builder.Append("/"); } builder.Length -= 1; Process.Start(builder.ToString()); }
public void ShowRace(IRaceInfo race) { var builder = new StringBuilder(); builder.Append("http://kadgar.net/live/"); foreach (var stream in race.LiveStreams) { builder.Append(stream); builder.Append(","); } builder.Length -= 1; Process.Start(builder.ToString()); }
public void ShowRace(IRaceInfo race) { var url = string.Format("http://speedrunslive.com/race/?id={0}", race.Id); Process.Start(url); }