上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 1、Oracle数据库下载 Oracle官方网站下载数据库最新版本:http://www.oracle.com/technetwork/cn/database/enterprise-edition/downloads/index.html 2、Navicat Premium_11.2.7简体中文完美 阅读全文
posted @ 2017-03-16 15:00 zxd543 阅读(9434) 评论(0) 推荐(0) 编辑
摘要: /*注意 * 使用SqlServer2005 Service Broker 和 SqlDependency类提供数据更改的通知,注意一下几点 * 1.检测是否已经启用Service Broker * Select DATABASEpRoPERTYEX('数据库名称','IsBrokerEnabled 阅读全文
posted @ 2014-09-05 11:39 zxd543 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1.创建Webservice服务应用程序方式一:将VS2010采用的默认框架,改为使用框架.NET Framework2.0\3.0\3.5,这时新建"项目"or新建"网站"就可以找到需要的"ASP.NET WebService模板"来建立WebService了。方式二:创建空的web应用程序项目,... 阅读全文
posted @ 2014-07-03 10:55 zxd543 阅读(198) 评论(0) 推荐(0) 编辑
摘要: C#异步编程基础 阅读全文
posted @ 2014-06-24 15:02 zxd543 阅读(149) 评论(0) 推荐(0) 编辑
摘要: C#中慎用指针 1.指针运算: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PointerPlaygroubnd { class Program { / 阅读全文
posted @ 2014-06-21 18:37 zxd543 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1.栈(stack)using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Stack{ class Program { static void ... 阅读全文
posted @ 2014-06-14 10:20 zxd543 阅读(357) 评论(0) 推荐(0) 编辑
摘要: CarDealer类 事件发布程序using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace DelegateEvent{ public class CarInfoEve... 阅读全文
posted @ 2014-06-06 11:07 zxd543 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.简单委托示例using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SimpleTest{ class Program { private d... 阅读全文
posted @ 2014-05-30 10:01 zxd543 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 数据库中的数字和编程语言中的数字有显著的不同,数据库中的数字可以为空,C#中的数字不能为空。int? x = null; //此时x可以为空测试类(NullableTest)using System;using System.Collections.Generic;using System.Linq... 阅读全文
posted @ 2014-05-08 16:00 zxd543 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 泛型类的功能:默认值、约束、继承、静态成员 。以从队列中读取文档为例泛型继承:子类和基类泛型类型一致或指定基类的泛型类型泛型的静态成员: 只能类的一个实例中共享 public class StaticDemo { public static int x; ... 阅读全文
posted @ 2014-05-08 10:56 zxd543 阅读(149) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页