111,093
社区成员




public void Start()
{
thread = new Thread(delegate()
{
while (true)
{
UpLoadImg();
Thread.Sleep(10000);
}
});
thread.Start();
}