public static double GetNumWeights(this Game game)
 {
     return(Double.Parse(game.GetStatistics().Numweights.Value));
 }
 public static double GetOwned(this Game game)
 {
     return(Double.Parse(game.GetStatistics().Owned.Value));
 }
 public static double GetNumComments(this Game game)
 {
     return(double.Parse(game.GetStatistics().Numcomments.Value));
 }
 public static double GetAverageWeight(this Game game)
 {
     return(SafeDoubleSeparator(game.GetStatistics().Averageweight.Value));
 }
 public static double GetWishing(this Game game)
 {
     return(Double.Parse(game.GetStatistics().Wishing.Value));
 }
 public static double GetUsersRated(this Game game)
 {
     return(Double.Parse(game.GetStatistics().Usersrated.Value));
 }