lijinchang

导航

2011年2月22日 #

多线程操作的例子

摘要: using System;using System.Collections.Generic;using System.Text;using System.Threading;namespace ConsoleApplication5{ public class Contract { private string id; private string from; private string to; private decimal fee; public string ID { get { return id; } private set { id = value; } } public str 阅读全文

posted @ 2011-02-22 14:38 lijinchang 阅读(163) 评论(0) 推荐(0) 编辑