随笔分类 -  C# 学习源码解析

对理论概念进行源码的解析理解
摘要:/************************************************************************************** 代码:吴蒋* 时间:2012.03.30* 说明:重写微软的SQLHELP的数据库操作基类* 其他:* 修改人:* 修改时间:* 修改说明:************************************************************************************/using System;using System.Data;using System.Data.SqlClien 阅读全文
posted @ 2012-03-30 13:37 吴蒋 阅读(1451) 评论(0) 推荐(0) 编辑
摘要:// ===============================================================================// Microsoft Data Access Application Block for .NET// http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp//// SQLHelper.cs//// This file contains the implementations of the SqlHelper and SqlHelperParameterCa 阅读全文
posted @ 2012-03-30 13:32 吴蒋 阅读(425) 评论(0) 推荐(0) 编辑
摘要:/************************************************************************************** 代码:吴蒋* 时间:2012.03.30* 说明:字符串处理公共基类* 其他:* 修改人:* 修改时间:* 修改说明:************************************************************************************/using System;using System.Web;using System.Text.RegularExpressions;u 阅读全文
posted @ 2012-03-30 13:29 吴蒋 阅读(1080) 评论(0) 推荐(0) 编辑
摘要:1 /************************************************************************************* 2 * 代码:吴蒋 3 * 时间:2012.03.30 4 * 说明:缓存公共基类 5 * 其他: 6 * 修改人: 7 * 修改时间: 8 * 修改说明: 9 ************************************************************************************/ 10 using System; 11 using System.W... 阅读全文
posted @ 2012-03-30 13:26 吴蒋 阅读(895) 评论(0) 推荐(0) 编辑
摘要:验证码效果代码:/*编写者:吴蒋 时间:2010-07-21 修改者: 修改内容:*/using System;using System.Drawing;using System.Text;public partial class Inc_ValidateCode : System.Web.UI.Page{ #region 页面事件 /// <summary> /// 页面加载事件 /... 阅读全文
posted @ 2010-07-21 09:27 吴蒋 阅读(451) 评论(0) 推荐(0) 编辑
摘要:应用程序域操作(AppDomain) 代码解析1.应用程序域AppDomain操作代码AppDomain类是一个应用程序域封装的类,提供一些域的操作比如加载程序集、创建对象、创建应用程序域等等。代码输出结果:下面来一组会报错的代码 我不用当前的应用程序域 新建一个域然后加载类代码输出错误为:未标记为可序列化,想想为什么发生这个异常AppDomain ap = AppDomain.CurrentDo... 阅读全文
posted @ 2010-05-11 13:30 吴蒋 阅读(545) 评论(0) 推荐(0) 编辑