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 200 点赞 3 评论 303 浏览