
C#
any2mobile
飞信COM/VCL组件 - http://www.fetion123.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
What browsers support HTML5 WebSocket API?
http://stackoverflow.com/questions/1253683/what-browsers-support-html5-websocket-apiClient sideHixie-75:Chrome 4.0 + 5.0Safari 5.0.0HyBi-00/Hixie-76:Chrome 6.0 - 13.0Safari 5.0.2 + 5转载 2011-11-30 14:51:05 · 1403 阅读 · 0 评论 -
C# 线程更新 UI
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;namespace原创 2011-11-30 15:15:32 · 442 阅读 · 0 评论 -
Is There A Good Reason To “Hide Inherited Members”?
http://davybrion.com/blog/2010/01/is-there-a-good-reason-to-hide-inherited-members/ new public void DoSomething() { base.DoSomething(); Console.Wr转载 2011-12-02 17:04:44 · 395 阅读 · 0 评论 -
System.Threading.Timer使用心得
http://hi.baidu.com/murphy1314/blog/item/4c0413b5557c3bc936d3cab9.htmlSystem.Threading.Timer 是一个使用回调方法的计时器,而且由线程池线程服务,简单且对资源要求不高。只要在使用 Timer,就必须保留对它的引用。对于任何托管对象,如果没有对 Timer 的引用,计时器会被垃圾回收。即转载 2011-12-06 22:25:09 · 360 阅读 · 0 评论 -
IIS应用程序池优化方案
http://www.ninxia.com/article/Website_Optimization/52.htmlIIS应用程序池优化方案服务器经常产生“应用程序池 'DefaultAppPool' 提供服务的进程关闭时间超过了限制。进程 ID 是 '3504'。”的错误,导致iis处于假死状态,经了解是IIS应用程序池的设置问题。解决方法如下(红色字为标记):Internet转载 2012-04-16 20:23:30 · 2207 阅读 · 0 评论 -
How to sign an IIS SSL certificate request using OpenSSL
http://blog.dzhuvinov.com/?p=738How to sign an IIS SSL certificate request using OpenSSLThe OpenSSL toolkit can be used to sign IIS / ADAM certificate requests. This is done in 5 steps:1.转载 2012-04-20 22:11:15 · 601 阅读 · 0 评论 -
Flood Fill Image
http://rosettacode.org/wiki/Bitmap/Flood_fill#First_exampleC# Example:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Drawing;namespace原创 2015-07-27 17:43:32 · 542 阅读 · 0 评论 -
Using Session State in a Web Service
http://www.codeproject.com/Articles/35119/Using-Session-State-in-a-Web-Service转载 2015-09-02 15:48:52 · 372 阅读 · 0 评论