C# XML Deserializing Error (2,2)
问题 School gave me an XML document, and I have to display the information on a screen. As far as I know, Xml Deserialization would be the easiest/nicest solution. I have this so far: public static List<Project> ProjectListDeserialize(string path) { XmlSerializer serializer = new XmlSerializer(typeof(List<Project>)); Stream filestream = new FileStream(path, FileMode.Open); return (List<Project>)serializer.Deserialize(filestream); } public static Projects ProjectsDeserialize(string path) {