您好,我在调试时得到了这个消息,并且不知道如何找到解决方案。 System.Threading.ThreadStateException'发生在System.Windows.Forms.dll
中以下是代码:
namespace PhoneTaker
{
class Program
{
static void Main(string[] args)
{
List<string> NamesList = File.ReadLines("Names.txt").ToList();
string str = NamesList.ElementAt(0);
Console.WriteLine(str);
Clipboard.Clear();
Clipboard.SetText(str);
NamesList.Remove(str);
File.WriteAllLines("Names.txt", NamesList);
Console.WriteLine("All Done");
Console.ReadLine();
}
}
}