摘要:
要序列化的对象的类: [Serializable]public class Person{private string name;public string Name{get{return name;}set{name=value;}}public string Sex;public int Age=31;public Course[] Courses;public Person(){}publ... 阅读全文
摘要:
获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。 [Visual Basic] Public Shared ReadOnly Property StartupPath As String [C#] public static string StartupPath {get;} [C++] public: __property static String* get_Startu... 阅读全文
摘要:
1、xml文件MyConfigure.xml 2、遍历该xml文件。/// /// 读入xml的值--dhg 2006-7-6 10:00 /// private void MyXmlReader() { try { string XMLPath=Application.StartupPath+"... 阅读全文
摘要:
System.Windows.Forms.Application.StartupPath------------------------------------------------------- 获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。[Visual Basic]Public Shared ReadOnly Property StartupPath As String[C... 阅读全文
摘要:
XML文件test.xml的内容如下,要求与程序在一个目录(我不说你们看了程序应该也知道)爱你的我有一颗心恨你的我有一颗心 接着看程序代码:using System;using System.Xml; //导入操作XML文档使用的名字空间 namespace XMLcaozuo{ class Class1 { [STAThread] static void Mai... 阅读全文