摘要:var jsonList = [{"uname":"王强","day":"2010/06/17"},{"uname":"王海云","day":"2010/06/11"}]; for (var o in jsonList) { alert("text:" + jsonList[o...
阅读全文
摘要:public class Test{public int para1 { get; set; }public string para2 { get; set; }}====================================================================...
阅读全文
摘要:li strong { font-style: italic; font-weight: normal; }我是斜体字。这是因为 strong 元素位于 li 元素内。#sidebar p { font-style: italic; text-align: right; margin-top: 0....
阅读全文
摘要:public void Run() { var watch = new DelayedFileSystemWatcher(@"d:\test\sz") { EnableRaisingEvents = true, IncludeSubdirectories = true, NotifyFilter = NotifyFilters.FileName | NotifyFilters.Size | NotifyFilters.LastWrite | No...
阅读全文
摘要:发布QQ.NET第一个预览版(阿不) http://www.cnblogs.com/hjf1223/archive/2008/03/13/qq_net_FCTP.html 开源项目(灵感之源) http://www.cnblogs.com/unruledboy/category/2421.html js牛人 http://thinhunan.cnblogs.com/ 小山 http://s...
阅读全文
摘要:DotNet开发中细小知识点解疑(不断更新) 知识点解疑(不断更新) short s1 = 1; s1 = s1 + 1; short s1 = 1; s1 += 1;(可以正确编译) 因为S1是short型的,占2个字节,而1是int型的,占4个字节。在两个类型的值相加的时候,会发生自动类型的提升。也就是说s1+1后,其结果...
阅读全文