摘要:
http://www.cnblogs.com/linglizeng/archive/2010/01/29/Bat-CMD-ChineseVerion.html1.综述1、”.bat”:这是微软的第一个批处理文件的后缀名,在几乎所有的Windows操作系统内都能运行。2、“.cmd”:是为Window... 阅读全文
摘要:
http://msdn.microsoft.com/zh-cn/library/system.io.file(v=vs.110).aspxusing System;using System.IO;class Test{ public static void Main() { ... 阅读全文
摘要:
1. ExeptionError:System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {877AA945-1CB2-41... 阅读全文
摘要:
错误:Error msg: A reference was created to embedded interop assembly. because of an indirect reference to that assembly created by assembly. Consider ch... 阅读全文
摘要:
testJsonAsXMLNodeAttributeusing Newtonsoft.Json;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threadi... 阅读全文
摘要:
Type t = typeof(string); if (t.IsPrimitive)//not { Console.WriteLine("string is a Primitive"); ... 阅读全文
摘要:
1 public static string TestXML(string path) 2 { 3 4 XmlDocument doc = new XmlDocument(); 5 doc.Load(path); 6... 阅读全文
摘要:
string path = @"D:\a.txt";System.IO.StreamWriter swOut = new System.IO.StreamWriter(path, false, System.Text.Encoding.Default);swOut.WriteLine(strA);s... 阅读全文
摘要:
http://msdn.microsoft.com/zh-cn/library/System.Xml.XmlDocument(v=vs.80).aspx1.memberhttp://msdn.microsoft.com/zh-cn/library/system.xml.xmldocument_mem... 阅读全文