随笔分类 -  C#

摘要:source LinkIntroductionThis is theEntityFrameworkarticle series. In our previous two articles we learned various approaches to working withEntityFrame... 阅读全文
posted @ 2015-05-26 17:20 masic 阅读(288) 评论(0) 推荐(0)
摘要:原文链接Pre-RequisitesYou will need to have Visual Studio 2010 or Visual Studio 2012 installed to complete this walkthrough.If you are using Visual Studio... 阅读全文
posted @ 2015-05-17 19:09 masic 阅读(198) 评论(0) 推荐(0)
摘要:Configure Visual Studio 2013 for debugging .NET frameworkIn order to configure Visual Studio 2013 do the following in the Tools -> Options -> Debuggin... 阅读全文
posted @ 2015-05-08 22:27 masic 阅读(214) 评论(0) 推荐(0)
摘要:原文链接 xml 文档 操作实例using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls... 阅读全文
posted @ 2014-09-07 07:36 masic 阅读(330) 评论(0) 推荐(0)
摘要:原文链接:http://kb.cnblogs.com/page/106722/ 一、用属性代替可访问的字段 1、.NET数据绑定只支持数据绑定,使用属性可以获得数据绑定的好处; 2、在属性的get和set访问器重可使用lock添加多线程的支持。 二、readonly(运行时常量)和const(编译时常量) 1、const只可用于基元类型、枚举、字符串,而readonly则可以是任何... 阅读全文
posted @ 2014-08-02 23:00 masic 阅读(254) 评论(0) 推荐(0)