上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: https://github.com/ninject/Ninject/wiki/Modules-and-the-Kernel http://www.cnblogs.com/willick/p/3223042.html http://blog.agilistic.nl/a-step-by-step-g 阅读全文
posted @ 2016-03-11 12:25 JustYong 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1.获取本地路径的网络访问地址 private IEnumerable<KeyValuePair<string, string>> GetShareFolders() { var shareFolders = new List<KeyValuePair<string, string>>(); // 阅读全文
posted @ 2016-03-04 09:43 JustYong 阅读(3347) 评论(0) 推荐(0) 编辑
摘要: 炮哥:"嘿,哥们,忙啥呢,电脑卡成这逼样。"勇哥:"在用CLR Profile工具分析下FlexiPrint的内存占用情况。"炮哥:“哎哟,不错啊,玩高级的了。”勇哥:“也没有啊,就是发现点击查询按钮查询数据时,如果数据量一大的话,内存上上升了好几个M,所以第一感觉就不太正常。正好以前也了解过CLR... 阅读全文
posted @ 2016-01-14 21:14 JustYong 阅读(2569) 评论(4) 推荐(11) 编辑
摘要: 1.控制台应用程序全局捕获未处理的异常 2.Winform应用程序全局捕获未处理的异常 3.WPF应用程序全局捕获未处理的异常 但是AppDomain.CurrentDomain.UnhandledException并非像声明的那样能捕获到所有的异常,详细请参与如下文档。 http://stacko 阅读全文
posted @ 2016-01-08 17:42 JustYong 阅读(772) 评论(0) 推荐(0) 编辑
摘要: 1.var与dynamic的区别 C#中的很多关键词用法比较容易混淆,var和dynamic就是其中一组,但其实它们是有本质的区别的。var 在编译阶段已经确定类型,在初始化时候,必须提供初始化的值,而dynamic则可以不提供,它是在运行时才确定类型。 1 static voi... 阅读全文
posted @ 2016-01-08 14:40 JustYong 阅读(7135) 评论(2) 推荐(2) 编辑
摘要: 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 const string printerName = "Print to file"; 6 ... 阅读全文
posted @ 2016-01-05 16:59 JustYong 阅读(1373) 评论(0) 推荐(0) 编辑
摘要: 一、CSS背景1.背景颜色p {background-color: gray;}background-color不能继承,其默认值是transparent。也就是说,如果一个元素没有指定背景色,那么背景就是透明的,这样其祖先元素的背景才能可见。2.背景图像(1)背景图像: body {backgro... 阅读全文
posted @ 2015-12-14 18:03 JustYong 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1.元素选择器“类型选择器匹配文档树中该元素类型的每一个实例”,如下定义的类型选择器将匹配文档中的所有p元素。p{ background-color:green;}2.CSS分组选择器分组假设希望 h2 元素和段落都有灰色。为达到这个目的,最容易的做法是使用以下声明:p,h2{ color:gr... 阅读全文
posted @ 2015-12-05 21:14 JustYong 阅读(703) 评论(0) 推荐(0) 编辑
摘要: 1.DataGridView数据绑定 1 namespace WindowsFormsApplication1 2 { 3 public partial class Form1 : Form 4 { 5 private List _students = ne... 阅读全文
posted @ 2015-10-23 11:54 JustYong 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 我们先来看一个示例代码:namespace ConsoleApplication1{ class Program { static void Main(string[] args) { ArrayList a = new ArrayLis... 阅读全文
posted @ 2015-09-06 17:29 JustYong 阅读(304) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页