gpt4 book ai didi

c# - 无法让 MethodInvoker 返回 bool 值

转载 作者:行者123 更新时间:2023-11-30 19:45:28 25 4
gpt4 key购买 nike

我需要从我的线程中访问一个共享的日志文件,所以我现在尝试使用 MethodInvoker 来读取文件并返回一个 bool 值,这取决于它是否找到了一个条目。但是得到这个错误,无法弄清楚如何让它返回一个 bool 值:

Cannot convert anonymous method to delegate type 'System.Windows.Forms.MethodInvoker' because some of the return types in the block are not implicitly convertible to the delegate return type

    private void searchLogInThread(string msg, string fileName)
{
Invoke(new MethodInvoker(
delegate
{
StreamReader re = File.OpenText(fileName);

string input = null;
while ((input = re.ReadLine()) != null)
{

if (input.Contains(msg))
{
re.Close();
return true;
}

}
re.Close();
return false;
}
));
}

最佳答案

描述

MethodInvoker 是一个没有结果的委托(delegate)。您需要创建自己的。

示例

public delegate bool MethodInvokerWithBooleanResult();

Invoke(new MethodInvokerWithBooleanResult(
delegate
{
// do something and return a bool
return true;
}
));

更新

另一种方法是使用 Func<bool>

Invoke(new Func<bool>(
delegate
{
// do something and return a bool
return true;
}
));

更多信息

关于c# - 无法让 MethodInvoker 返回 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10518774/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com