上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 32 下一页
摘要: http://www.cnblogs.com/linglizeng/archive/2010/01/29/Bat-CMD-ChineseVerion.html1.综述1、”.bat”:这是微软的第一个批处理文件的后缀名,在几乎所有的Windows操作系统内都能运行。2、“.cmd”:是为Window... 阅读全文
posted @ 2014-07-11 10:54 vivianC 阅读(435) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/zh-cn/library/system.io.file(v=vs.110).aspxusing System;using System.IO;class Test{ public static void Main() { ... 阅读全文
posted @ 2014-07-10 17:40 vivianC 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1. ExeptionError:System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {877AA945-1CB2-41... 阅读全文
posted @ 2014-07-05 21:02 vivianC 阅读(1685) 评论(0) 推荐(0) 编辑
摘要: 错误:Error msg: A reference was created to embedded interop assembly. because of an indirect reference to that assembly created by assembly. Consider ch... 阅读全文
posted @ 2014-07-05 19:07 vivianC 阅读(7036) 评论(0) 推荐(0) 编辑
摘要: testJsonAsXMLNodeAttributeusing Newtonsoft.Json;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threadi... 阅读全文
posted @ 2014-07-04 16:38 vivianC 阅读(333) 评论(0) 推荐(0) 编辑
摘要: Type t = typeof(string); if (t.IsPrimitive)//not { Console.WriteLine("string is a Primitive"); ... 阅读全文
posted @ 2014-07-03 09:45 vivianC 阅读(1553) 评论(0) 推荐(0) 编辑
摘要: 1 public static string TestXML(string path) 2 { 3 4 XmlDocument doc = new XmlDocument(); 5 doc.Load(path); 6... 阅读全文
posted @ 2014-07-02 14:31 vivianC 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: string path = @"D:\a.txt";System.IO.StreamWriter swOut = new System.IO.StreamWriter(path, false, System.Text.Encoding.Default);swOut.WriteLine(strA);s... 阅读全文
posted @ 2014-07-02 14:21 vivianC 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2014-06-05 11:11 vivianC 阅读(357) 评论(0) 推荐(0) 编辑
摘要: http://birdshover.cnblogs.com/articles/392127.html泛型(generic)是C#语言2.0和通用语言运行时(CLR)的一个新特性。泛型为.NET框架引入了类型参数(type parameters)的概念。类型参数使得设计类和方法时,不必确定一个或多个具... 阅读全文
posted @ 2014-06-04 16:20 vivianC 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 32 下一页