07 2012 档案

摘要:http://hi.baidu.com/zaqx000/blog/item/ffd1dc097ab3f189d0581b66.htmlselect * from tablename where charindex(','+'3'+',',','+name+',')>0 阅读全文
posted @ 2012-07-26 15:26 事理 阅读(1251) 评论(0) 推荐(0)
摘要:问题源自http://topic.csdn.net/u/20120721/22/e3b8af77-dbe7-4e71-96af-1831508e09fa.html#replyachor在14楼的回复var c=s;应该是创建一个c引用地址到s指向的堆中,s的引用地址改变,c应该是不会改变的,但这种写法结果还是和lz的一样,有些不解了。这个是自己测试写出了问题。实际上还是创建一个c引用地址到s指向的堆中三种解决办法。 public class Test { public int volume { set; get; } public string name { ... 阅读全文
posted @ 2012-07-22 00:04 事理 阅读(216) 评论(0) 推荐(0)
摘要:internal class HiPerfTimer { [DllImport("Kernel32.dll")] private static extern bool QueryPerformanceCounter( out long lpPerformanceCount); [DllImport("Kernel32.dll")] private static extern bool QueryPerformanceFrequency( out long lpFrequency);... 阅读全文
posted @ 2012-07-14 14:21 事理 阅读(436) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/chnking/archive/2008/08/18/1270063.html#_Toc206781336http://hukunlin.blog.51cto.com/545402/151095http://jeffyyko.blog.51cto.com/28563/142280 阅读全文
posted @ 2012-07-09 14:27 事理 阅读(299) 评论(0) 推荐(0)