有没有办法设置 Sytem.Threading.Task 的名称?

发布于 2024-10-04 03:14:03 字数 45 浏览 2 评论 0原文

Thread 对象有一个 Name 属性,但我似乎无法为任务找到相同的属性。

A Thread object has a Name property but I cannot seem to locate the same for a Task.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

杀お生予夺 2024-10-11 03:14:03

不,我不相信任务有名称。每个任务都有一个唯一的 Id您可以跟踪,但不能跟踪名称。

No, I don't believe tasks have names. Each task has a unique Id which you can keep track of, but not a name.

梦在深巷 2024-10-11 03:14:03

您可以在线程代码中分配名称,这对于调试很有用。这有效:

using System;
using System.Threading;
using System.Threading.Tasks;

class Program {
    static void Main(string[] args) {
        var task = Task.Factory.StartNew(() => {
            Thread.CurrentThread.Name = "Hello world";
            // Look in the Debug + Windows + Threads window now...
            System.Threading.Thread.Sleep(10000);
        });
        Console.ReadLine();
    }
}

You can assign the name in the threaded code, useful for debugging. This worked:

using System;
using System.Threading;
using System.Threading.Tasks;

class Program {
    static void Main(string[] args) {
        var task = Task.Factory.StartNew(() => {
            Thread.CurrentThread.Name = "Hello world";
            // Look in the Debug + Windows + Threads window now...
            System.Threading.Thread.Sleep(10000);
        });
        Console.ReadLine();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文