示例#1
0
 internal XBLGameInfo(XElement e)
 {
     Game         = new XBLGame(e.Element("Game"));
     LastPlayed   = DateTime.Parse(e.Element("LastPlayed").Value);
     Achievements = int.Parse(e.Element("Achievements").Value);
     GamerScore   = int.Parse(e.Element("GamerScore").Value);
     DetailsURL   = e.Element("DetailsURL").Value;
 }
示例#2
0
 internal XBLGameInfo(XElement e)
 {
     Game = new XBLGame(e.Element("Game"));
     LastPlayed = DateTime.Parse(e.Element("LastPlayed").Value);
     Achievements = int.Parse(e.Element("Achievements").Value);
     GamerScore = int.Parse(e.Element("GamerScore").Value);
     DetailsURL = e.Element("DetailsURL").Value;
 }