예제 #1
0
파일: XBL.cs 프로젝트: JnrnZEDb/striderMVC
 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
파일: XBL.cs 프로젝트: strider-/striderMVC
 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;
 }