码迷,mamicode.com
首页 >  
搜索关键字:threading    ( 3244个结果
C#定时器
在C#里关于定时器类就有3个1.定义在System.Windows.Forms里2.定义在System.Threading.Timer类里3.定义在System.Timers.Timer类里 System.Windows.Forms.Timer是应用于WinForm中的,它是通过Windows消息机...
分类:Windows程序   时间:2015-04-27 13:04:55    阅读次数:212
矩阵缩放和投影
缩放在目前代码只有3D的,2D自己想想(╯▽╰)吧 投影矩阵公式: 3D using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Task...
分类:其他好文   时间:2015-04-26 22:33:44    阅读次数:177
C#多线程基础
核心内容:1、必要的空间引入。2、在当前线程上新建另一线程。3、运行线程。4、挂起线程。5、线程恢复。6、线程等待。7、线程同步。8、线程异步。9、结束线程。具体实现:1、(必须)引入System.Threading空间。2、C#中几乎所的都被封装成类,Thread也是如此,采取类的实例化(定义方式...
分类:编程语言   时间:2015-04-26 22:24:21    阅读次数:183
矩阵相乘
1. 矩阵和矩阵相乘 2. 矩阵和向量相乘 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Co...
分类:其他好文   时间:2015-04-26 19:44:08    阅读次数:202
python socket 轻量级服务器
由于Python天生的优点,特别适用于快速实现功能。? ?? #!/usr/bin/python2.7 import sys import time import socket #import modbus import threading import select class thread(threading.Thread): d...
分类:编程语言   时间:2015-04-26 00:06:12    阅读次数:168
线程Thread,有参数和参数
一、不带参数的using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace AAAAAA { class AAA { public...
分类:编程语言   时间:2015-04-24 20:44:57    阅读次数:158
一个继承例子
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _...
分类:其他好文   时间:2015-04-24 18:11:41    阅读次数:141
.net 读写xml
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Xml;namespace XMLdemo{ ...
分类:Web程序   时间:2015-04-24 15:32:59    阅读次数:138
out参数,ref参数,params参数
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _...
分类:其他好文   时间:2015-04-23 19:34:10    阅读次数:114
Http Client请求
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using System.Text;using System.Threading.Tasks;...
分类:Web程序   时间:2015-04-23 12:31:28    阅读次数:184
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!