C# 网络编程小计 20150202

在学习网络Socket编程之前必须得学会多线程编程,这个是经常会用的到

可参考:http://www.cnblogs.com/GIS_zhou/articles/1839248.html

System. Threading; 线程的命名空间

C# 网络编程小计 20150202
1         //线程的创建
2         Thread thread = new Thread(new ThreadStart(accp));
3         static void accp() { 
4             //....
5         }
线程的创建

 

C# 网络编程小计 20150202

上一篇:mysql更新字段值提示You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode


下一篇:通过cassandra-cli客户端了解cassandra的内部数据结构