Do we need to dispose or terminate a thread in C# after usage?

前端 未结 3 1773
隐瞒了意图╮
隐瞒了意图╮ 2020-12-09 02:06

I have the following code:

        public static void Send(this MailMessage email)
    {
        if (!isInitialized)
            Initialize(false);
        /         


        
3条回答
  •  醉酒成梦
    2020-12-09 02:40

    Thread is diposed when its routine comes at end.
    So NO, you don't have to do it, it's not necessary (nor possible I think).

提交回复
热议问题