摘要:
需要动态的创建一个实例模型的时候,就用Activator.CreateInstance(Type type);如果是明确的知道要创建哪个实例的模型,就可以用 new C#在类工厂中动态创建类的实例,所使用的方法为: 1. Activator.CreateInstance (Type) 2. Acti 阅读全文
摘要:
class ITInfo_SFC { public bool bPingFaile = false; HttpWebRequest http; public Server server; public string url = "https://www.baidu.com/"; public str 阅读全文
摘要:
1 static void Main(string[] args) 2 { 3 int resLine = 0; 4 //连接字符串 5 string temp = @"ZZ-NBPC0003\AMSSQLSERVER"; 6 string str = "Data Source=" + temp + 阅读全文
摘要:
//FileStream类不是静态类,表示在磁盘或网络路径上指向文件的流。这个类提供了在文件中读写字节的方法,但经常使用StreamReader或 StreamWriter执行这些功能。 //这是因为FileStream类操作的是字节和字节数组,而Stream类操作的是字符数据。使用时需要创建对象, 阅读全文
摘要:
Dictionary<string, string>是一个泛型 \\ [value]也不一定都是string,也可能是一个类型; 他本身有集合的功能有时候可以把它看成数组 他的结构是这样的:Dictionary<[key], [value]> 他的特点是存入对象是需要与[key]值一一对应的存入该泛 阅读全文
摘要:
C# string 字符串的前面可以加 @(称作"逐字字符串")将转义字符(\)当作普通字符对待,比如: 阅读全文
摘要:
首先要引用这个服务,http://www.webxml.com.cn/Webservices/WeatherWebService.asmx 添加服务和引用 >转到 >高级 >添加WEB应用 >添加引用 到此OK。 1个text,1个button,2个lable private void btn_se 阅读全文
摘要:
public void FreshDateTime() { string strWeek = string.Empty; #region 格式化星期 switch (DateTime.Now.DayOfWeek) { case DayOfWeek.Sunday: strWeek = "星期日"; b 阅读全文
摘要:
Thread thread= new Thread(new ThreadStart(name); 与 Thread thread= new Thread(name); thread.star(str); public void name() {} 的区别; 还有大牛们有看出来哪里有问题么; 阅读全文
摘要:
public static class LogHelper { private static string strLogFolder; private static string strLogFile; private static object _obj = new object(); publi 阅读全文