• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Welcome to Leon's Blog
博客园    首页    新随笔    联系   管理    订阅  订阅

随笔分类 -  C#学习

1 2 下一页
.动态调用WebService(C#)

摘要:http://blog.163.com/linglong117/blog/static/277145472009127514463/ 阅读全文
posted @ 2013-01-24 17:21 Leon916 阅读(119) 评论(0) 推荐(0)
C# weakreference

摘要:http://hi.baidu.com/cxyking/item/68fdcf13d4fda6a5ffded5b2http://www.csharpwin.com/csharpspace/1827.shtmlhttp://technet.microsoft.com/zh-cn/magazine/system.weakreference(VS.100).aspx 阅读全文
posted @ 2013-01-24 10:08 Leon916 阅读(143) 评论(0) 推荐(0)
OpCodes

摘要:http://msdn.microsoft.com/en-US/library/system.reflection.emit.opcodes.unbox(v=vs.80).aspx 阅读全文
posted @ 2012-11-19 16:05 Leon916 阅读(152) 评论(0) 推荐(0)
[译文]从底层角度看ASP.NET-A low-level Look at the ASP.NET Architecture ( 转)

摘要:http://hyh98256.blog.163.com/blog/static/18303882220116251831352/ 阅读全文
posted @ 2012-09-19 22:25 Leon916 阅读(123) 评论(0) 推荐(0)
Object Builder Application Block

摘要:这里转载一篇管OB的文章,很透彻:http://www.cnblogs.com/zhenyulu/articles/641728.htmlhttp://www.cnblogs.com/zhenyulu/articles/641743.htmlhttp://www.cnblogs.com/zhenyulu/articles/641760.htmlhttp://www.cnblogs.com/zhenyulu/articles/641767.html 阅读全文
posted @ 2012-09-19 22:23 Leon916 阅读(108) 评论(0) 推荐(0)
jquery

摘要:http://www.w3school.com.cn/jquery/attributes_attr.asp 阅读全文
posted @ 2012-09-04 15:14 Leon916 阅读(125) 评论(0) 推荐(0)
TextBox & TextBoxFor

摘要:http://stackoverflow.com/questions/5119373/difference-between-html-textbox-and-html-textboxfor Html.TextBoxis not strongly typed and it doesn't require a strongly typed view meaning that you can hardcode whatever name you want as first argument and provide it a value:<%= Html.TextBox("fo 阅读全文
posted @ 2012-09-04 10:47 Leon916 阅读(310) 评论(0) 推荐(0)
Introducing “Razor” – a new view engine for ASP.NET

摘要:http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx 阅读全文
posted @ 2012-09-04 08:44 Leon916 阅读(129) 评论(0) 推荐(0)
命名参数(转)

摘要:http://www.cnblogs.com/2008freestyle/archive/2012/03/16/2399561.html 阅读全文
posted @ 2012-08-21 17:14 Leon916 阅读(102) 评论(0) 推荐(0)
Asp.Net MVC

摘要:MVC application Execution Process:http://msdn.microsoft.com/zh-cn/library/dd381612MVC Framework and Application Structurehttp://msdn.microsoft.com/zh-cn/library/dd410120Asp.Net Routinghttp://msdn.microsoft.com/zh-cn/library/cc668201 阅读全文
posted @ 2012-08-09 21:07 Leon916 阅读(144) 评论(0) 推荐(0)
cshtml

摘要:http://weblogs.asp.net/blogs/scottgu/image_2E188989.png靠它,我了解cshtml是什么,不愧是scottgu的文章 阅读全文
posted @ 2012-08-09 16:43 Leon916 阅读(301) 评论(0) 推荐(0)
正则表达式

摘要:http://manual.phpv.net/regular_expression.html 正则基础之 环视 Lookaround:http://www.poluoluo.com/zt/201102/108028.html正则基础之 NFA引擎匹配原理http://www.poluoluo.com/zt/201102/108027.html正则 捕获组(capture group)http://www.poluoluo.com/zt/201102/108025.html 阅读全文
posted @ 2012-05-15 17:17 Leon916 阅读(111) 评论(0) 推荐(0)
HTTP Page Life Cycle

摘要:对于底层关于页面的请求过程,长期以来没有得到正确的理解,现在将从网上找到的资料进行汇总一下:HTTP请求过程: http://www.tracefact.net/Asp-Net-Architecture/Http-Request-Processing-Flow.aspxPage Life Cycle Overivew: http://msdn.microsoft.com/en-us/library/ms178472.aspxHttp Module 介绍:http://www.tracefact.net/Asp-Net/Introduction-to-Http-Module.aspxHttp H 阅读全文
posted @ 2012-05-10 09:29 Leon916 阅读(206) 评论(0) 推荐(0)
About IConfigurationSectionHandler Interface

摘要:IConfigurationSectionHandler 类的实例必须是线程安全且无状态的。'>Instances of theIConfigurationSectionHandlerclass must be thread safe and stateless. Create 方法必须可由多个线程同时调用。'>TheCreatemethod must be callable from multiple threads simultaneously.Create 方法生成的配置对象必须是线程安全且不可变的。'>Furthermore, the conf 阅读全文
posted @ 2012-05-09 14:10 Leon916 阅读(175) 评论(0) 推荐(0)
NOP(4) default

摘要:再看NOP代码的时候遇到了一个关键字default,之前没有见过。百度之后:给定参数化类型 T 的一个变量 t,只有当 T 为引用类型时,语句 t = null 才有效;只有当 T 为数值类型而不是结构时,语句 t = 0 才能正常使用。解决方案是使用 default 关键字,此关键字对于引用类型会返回空,对于数值类型会返回零。对于结构,此关键字将返回初始化为零或空的每个结构成员,具体取决于这些结构是值类型还是引用类型。以下来自 GenericList<T> 类的示例显示了如何使用 default 关键字。另外参加:http://msdn.microsoft.com/en-us/l 阅读全文
posted @ 2012-05-03 09:13 Leon916 阅读(249) 评论(0) 推荐(0)
NOP 随笔

摘要:分层不是面向对象开发,只是将复杂的系统模块化而已。 阅读全文
posted @ 2012-04-11 08:43 Leon916 阅读(221) 评论(0) 推荐(0)
About the IoC

摘要:Here is a link about Ioc:(this conception has a long time, but I still don't understand completely, hoping this link can help)http://weblogs.asp.net/sfeldman/archive/2008/02/14/understanding-ioc-container.aspx 阅读全文
posted @ 2012-04-09 14:09 Leon916 阅读(193) 评论(1) 推荐(0)
C# 线程同步互斥

摘要:http://www.360doc.com/content/11/0128/16/61151_89599841.shtml 阅读全文
posted @ 2012-03-23 17:33 Leon916 阅读(240) 评论(0) 推荐(0)
Dynamic类

摘要:C#的Reflect太强大了,但是学习起来有很复杂。这两天在看Spring.Net的源代码,发现在Spring.Reflection命名空间中,用到了大量的reflector,但是由于对这些不熟悉,所以只能边看边学了。下面的链接是关于DynamicMethod的实例。而且很多的框架软件都用到了反射的机制,使得框架很灵活。http://msdn.microsoft.com/zh-cn/library/system.reflection.emit.dynamicmethod(v=VS.80).aspxhttp://www.cnblogs.com/henryfan/archive/2008/05/. 阅读全文
posted @ 2011-10-24 23:27 Leon916 阅读(179) 评论(0) 推荐(0)
Spring代码分析1

摘要:Spring容器初始化过程可以分为,对ObjectDefinition(IObjectDefinition)的定位、加载和注册。对这三个过程用不同的模块进行行了实现。这样可以根据自己的需求修改或者扩展这些模块。对于这个三个模块的具体实现,还需要对代码进行仔细阅读。 阅读全文
posted @ 2011-10-15 11:53 Leon916 阅读(151) 评论(0) 推荐(1)

1 2 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3