摘要:
public class IniFile { //ini文件的路径 [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filepath); ... 阅读全文
posted @ 2007-06-29 09:59 带你去月球 阅读(256) 评论(0) 推荐(0)
|
|||
摘要:
public class IniFile { //ini文件的路径 [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filepath); ... 阅读全文
posted @ 2007-06-29 09:59 带你去月球 阅读(256) 评论(0) 推荐(0)
摘要:
出自Scott Hanselman博客,原文"What Great .NET Developers Ought To Know (More .NET Interview Questions)",是篇老文章了,今天不知道怎么看到的。感觉挺好,涉及面广,而且不枯燥,深浅适度,记在这里先。 Google了一下才知道,Scott是.NET界的名人,《ASP.NET高级编程》(清华出的红皮书)的作者之一。C... 阅读全文
posted @ 2007-06-27 13:54 带你去月球 阅读(196) 评论(0) 推荐(0)
摘要:
How to read resource string info from xml resource files. 阅读全文
posted @ 2007-05-29 16:43 带你去月球 阅读(325) 评论(0) 推荐(0)
摘要:
1public void OpenXmlDoc(string xmlFile) 2 { 3 tvXml.Nodes.Clear(); 4 5 //Initailize XML objects 6 XmlTextReader xmlR = new XmlTextReader(xmlFile); 7 ... 阅读全文
posted @ 2007-05-25 15:36 带你去月球 阅读(373) 评论(0) 推荐(0) |
|||