xml 封装类 public static class XmlHelper { public static T FromXmlFile<T>(this string filePath) where T : new() { T result = new T(); if (!File.... Other 2023-10-16 153 点赞 2 评论 231 浏览