bad show lifetime statistics
Status: Pre-Alpha
Brought to you by:
lucasjames
When is open lifetime.xml website try to deserialize with:
XmlSerializer s = new XmlSerializer(typeof(Report));
TextReader r = new StreamReader(filepath);
report = (Report)s.Deserialize(r);
but would be:
XmlSerializer s = new XmlSerializer(typeof(Lifetime));
TextReader r = new StreamReader(filepath);
lifetime = (Lifetime)s.Deserialize(r);