随笔分类 -  C#

摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.IO.Packaging;using System.Xml;namespace ReadDocx{ class Program { static void Main(string... 阅读全文
posted @ 2008-05-15 16:33 DaveLin 阅读(2656) 评论(1) 推荐(0)
摘要:Boolean createdNew; //返回是否赋予了使用线程的互斥体初始所属权 System.Threading.Mutex instance = new System.Threading.Mutex(true, "MutexName", out createdNew); //同步基元变量 if (createdNew) //赋予了线程初始所属权,也就是首次使用互斥体 { Applicati... 阅读全文
posted @ 2008-03-26 09:53 DaveLin 阅读(461) 评论(0) 推荐(0)