上一页 1 ··· 375 376 377 378 379 380 381 382 383 ··· 401 下一页
摘要: 举例1 有一张项目表 CREATE TABLE [ProjectTable] ( [ProjectID] NVARCHAR(16) NOT NULL, [ProjectName] NVARCHAR(20) NOT NULL ON CONFLICT REPLACE DEFAULT Null, [Dev 阅读全文
posted @ 2015-05-22 17:30 ChuckLu 阅读(381) 评论(0) 推荐(0)
摘要: 1. 去官网下载安装http://www.jetbrains.com/resharper/ 2. 用于测试的注册码: [email protected] [email protected]+bsCmPOtyJ2w1g 阅读全文
posted @ 2015-05-22 09:22 ChuckLu 阅读(668) 评论(0) 推荐(0)
摘要: 绘制一个球 根据公式x^2+y^2+z^2=R^2; 令x=RsinAcosB y=RcosAcosB z=RsinB using System; using System.Collections.Generic; using System.ComponentModel; using System. 阅读全文
posted @ 2015-05-19 11:01 ChuckLu 阅读(5468) 评论(5) 推荐(0)
摘要: 最后上代码public partial class Test : Form { private TChart tChart = new TChart(); private int space = 3; public Test() { ... 阅读全文
posted @ 2015-05-19 10:50 ChuckLu 阅读(13242) 评论(9) 推荐(2)
摘要: const 与 readonly知多少 Practical Difference between Const & ReadOnly What is the difference between const and readonly? Apart from the apparent differenc 阅读全文
posted @ 2015-05-18 14:13 ChuckLu 阅读(415) 评论(0) 推荐(0)
摘要: Dock的Bottom,整个控件填充下半部分,控件会被横向拉长 Anchor,仅仅是控件固定在下方,位置不会发生移动,自动锚定了此控件和父容器的底部的间隔 Anchor可以确定控件的相对位置不发生变化 阅读全文
posted @ 2015-05-18 09:28 ChuckLu 阅读(1151) 评论(0) 推荐(0)
摘要: .net中的线程池ThreadPool还有和数据库交互的连接池,比如SQL Server Connection Pooling (ADO.NET)https://msdn.microsoft.com/en-us/library/8xx3tyca.aspxSQL Server Connection P... 阅读全文
posted @ 2015-05-17 09:40 ChuckLu 阅读(394) 评论(0) 推荐(0)
摘要: Object pool patternTheobject pool patternis a softwarecreational design patternthat uses a set of initializedobjectskept ready to use – a "pool" – rat... 阅读全文
posted @ 2015-05-16 18:17 ChuckLu 阅读(433) 评论(0) 推荐(0)
摘要: TeeChart曲线的X轴是时间,但是频率很高。没法完全显示。例如,一秒钟有2000个点,那么点与点的间隔为0.5毫秒。使用TChart类的GetAxisLabel事件,函数手册上对此事件的解释:An Event is triggered for each Axis Label painted. T... 阅读全文
posted @ 2015-05-15 18:12 ChuckLu 阅读(1144) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/zh-cn/library/system.threading.threadpool(v=vs.110).aspx 最基础的 线程池QueueUserWorkItem中方法没有执行 https://stackoverflow.com/questio 阅读全文
posted @ 2015-05-15 10:12 ChuckLu 阅读(225) 评论(0) 推荐(0)
上一页 1 ··· 375 376 377 378 379 380 381 382 383 ··· 401 下一页