
c#
REIONE
这个作者很懒,什么都没留下…
展开
-
学习网站
http://www.runoob.com/原创 2016-09-09 13:09:30 · 347 阅读 · 0 评论 -
C# Random.Next
C# random.next原创 2016-08-29 19:05:51 · 3548 阅读 · 0 评论 -
C# 枚举
enum原创 2016-08-22 16:18:41 · 267 阅读 · 0 评论 -
C# 单例模式
http://www.cnblogs.com/promise-7/archive/2012/05/10/2494275.html转载 2016-08-26 18:09:26 · 450 阅读 · 0 评论 -
XML
using System;using System.Xml;// 为了能使用XML操作,我们必须应用System.Xml的命名空间using System.IO;namespace OperationXML{ public class OperationXML { public OperationXML () { }转载 2016-09-20 23:16:05 · 435 阅读 · 0 评论 -
c# 多线程
线程构造函数Thread(ThreadStart) //无参 静态函数Thread(ParameterizedThread) //Thread(ParameterizedThread,Int32)Thread(ThreadStart,Int32) ThreadStart ParameterizedThread 均是委托类型这两个参数 相当于 线程的main函数线程池 ThreadPool原创 2016-09-29 22:53:06 · 396 阅读 · 0 评论