使用字符串类型参数进行线程处理

发布于 2024-12-01 23:57:38 字数 590 浏览 1 评论 0原文

使用 ParameterizedThreadStart 几乎可以工作,但它需要对象作为参数,这感觉非常错误。是否可以通过 ParameterizedThreadStart 传递字符串?

        public void OpenUDirectory(String Directory)
        {
              Items.Clear();
              foreach (FileInfo FI in new DirectoryInfo(Directory).GetFiles())
              {
                    Items.Add(FI.Name);
              }
        }

我想出了向 ParameterizedThreadStart 添加扩展构造函数的想法,以便我可以将 String 转换为 Object 并调用基本方法,但是有没有更干净的方法呢?

我确定我需要调用 Invoke 方法,以便我有一个委托:

    public delegate void OpenDD(String Directory);

Using ParameterizedThreadStart would almost work but it requires object as parameter, which feels very wrong. Is it possible to pass a String through ParameterizedThreadStart?

        public void OpenUDirectory(String Directory)
        {
              Items.Clear();
              foreach (FileInfo FI in new DirectoryInfo(Directory).GetFiles())
              {
                    Items.Add(FI.Name);
              }
        }

I came up with the idea of adding an extension constructor to ParameterizedThreadStart so that I could cast String to Object and call the base method, but is there a cleaner way?

I'm sure I need to call the Invoke method so I have a delegate:

    public delegate void OpenDD(String Directory);

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

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

发布评论

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

评论(1

微凉徒眸意 2024-12-08 23:57:38

当您启动线程时,您必须将其包装为对象。然后将其转换回 string 并调用您的方法。

这就是它的工作方式,因为它提供了最大范围的灵活性。

You have to box is as an object when you start the thread. Then cast it back to a string and call your method.

That is the way it works since it gives the greatest range of flexibility.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文