コード例 #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;
 }