不能隐式转换类型'void'& # 39; bool # 39;
本文关键字:转换 bool 类型 void 不能 | 更新日期: 2023-09-27 17:49:21
为什么这段代码:
protected bool IsServerPeer(InitRequest initRequest)
{
return _subServerCollection.IsServerPeer(initRequest);
}
创建错误:
不能隐式地将类型'void'转换为'bool'
可能是因为_subServerCollection.IsServerPeer()
具有返回类型void
检查_subServerCollection.IsServerPeer
的返回值。它可能不会返回布尔值。从错误消息来看,上述方法的返回类型可能是void(nothing returned from the method)
。