搜索资源列表
Data2.0
- 强大的数据库访问类dbhelper 2.0 1、多数据库支持 2、多数据库类型支持 3、强大的查询公用方法,如支持返回泛型实体对象集合,泛型值类型集合,实体对象,数据集等。 4、所有方法都支持参数化与非参数化访问db,调用十分方便。 5、使用了线程本地存储,使之能支持在业务逻辑层显式控制事务。 6、注释较为详细,配置十分简单,方法较为简洁(加上注释总共200多行代码)。 7、开源,容易修改。-Powerful database access class dbhelpe
CSharp-thread
- 对于整数数据类型的简单操作,可以用  Interlocked  类的成员来实现线程同步,存在于  System.Threading  命名空 间。Interlocked类有以下方法:Increment  ,  Decrement  ,  Exchange  和  CompareExchange  。使用  Increment  和  Decrement  可以保证对
MUDP
- C# 基于多播的信息收发类,含调用演示代码, 可以直接建立消息,不含线程接收实例-C# multicast-based messaging class, including calling the demo code, you can create a message directly, without a thread receives an instance
1
- 利用c#编程实现俄罗斯方块游戏,通过很多类和线程的控制,是俄罗斯方块游戏的过程逼真。-C# programming Tetris game, a lot of class and thread control, realistic process of Tetris game.
cProtectFile
- C#加密保护文件,请选择要加密或解密的文件,输入加/解密密码,密码应大于6位,显示加/解密进度,并可进行文件加/解密设置,文件加密后,可对文件进行保护,是一种安全的保存文件的方法。这里定义一个加密、解密类EDncrypt,可方便的运行加密、解密线程对所选文件加/解密。-C# encrypt protected files, select the file you want to encrypt or decrypt, enter the encryption/decryption passwor
moshi2_02
- 根据的单件模式修改成“n件模式”,把只能产生一个实例的类,给写成只能产生n个实例的类,考虑简单的多线程安全-According to the single mode into a " n-piece model" , the only generate an instance of the class, to be written only produce n instances of a class, consider the simple multi-thread safe
ThreadPool
- 利用c#编程的线程池类库,包含有多个线程实例类-C# programming using the thread pool class library contains multiple threads instance class
thread
- 单个写入程序/多个阅读程序在.Net 类库中其实已经提供了实现,即 System.Threading.ReaderWriterLock 类。本文通过对常见的单个写入/多个阅读程序的分析来探索c# 的多线程编程。-Single writer/multiple readers program. Net class library already provides a realization that System.Threading.ReaderWriterLock classes. Bas
RecordError
- 一个可以跟踪系统执行顺序的类,把他应用到程序中可以记录执行这句话执行的时间,从而跟踪程序执行顺序,尤其适用于多线程跟踪-An execution order of the class tracking system, he applied to the program execution time can be recorded in the execution of this sentence to track the program sequence, in particular for m
ThreadTestPool
- 多线程暂停,继续。使用Thread类。初学者可用。-Thread stop continue,use thread class,New user can use.
TasksDotnet
- Tasks and Task Parallel Library (TPL) : Multi-threading made easy-Introduction It had been really long since Tasks got released as part of .Net framework class library (FCL) as a wrapper over thread-pool threads. Now Microsoft strongly recommends
BackgroundWorkerDemo
- 通过Backgroundworker 模拟后台线程,并通过主界面更新进度条和显示进度信息(Use Backgroundworker class to simulate a back thread, and send the progress information to the main form.)