WPF/C#读写XML

之前代码稍有遗漏,进行部分修改。
WPF读取写入XML(可用于保存最近登陆系统的用户信息)

XML文件内容(user.xml)



  
    test11
    test11
  
  
    test112222
    test11
  
  
    test
    3
  

XML读写类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;

namespace RealTimeIrrigationPrediction.CommLib
{
    public class XMLHelper
    {
        //第一次创建xml
        private static string xmlFile = AppDomain.CurrentDomain.BaseDirectory + "user.xml";

        /// 
        /// 保存用户名密码
        /// 
        /// 
        /// 
        /// 
        public static void WriteUserToXML(string username, strin

你可能感兴趣的:(C#,xml,string,null,login,服务器)