本人使用vs2008开发windows窗体程序,想添加System.Threading用于多线程,但添加引用里居然没有!!
using System.Threading;
完全没用,添加不了引用!!高手赐教啊!!

解决方案 »

  1.   

    真的啊,痛苦啊,想死啊!!
    主程序里
    using System.Threading; 
    了,在资源管理器那想添加引用,居然没有System.Threading
    谁救我啊!
    加分加分!!
      

  2.   

    直接导入命名空间,不需添加引用using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Drawing.Printing;
    using System.Threading;
      

  3.   

    using System.Threading;
    这就可以了,不需要添加什么引用。
      

  4.   

    这个类就在mscorlib.dll这个程序集中。