标签:winform blog http os ar for sp log html
1:在项目上点右键 sproperties-settings 添加项目 如 MyText 类型 String
2: 获取值: string loginId = Properties.Settings.Default.MyText;
3:保存值:在Formclosing中
Properties.Settings.Default.MyText = UserID.ToString();
Properties.Settings.Default.Save();
标签:winform blog http os ar for sp log html
原文地址:http://www.cnblogs.com/jiahuafu/p/4048336.html