Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无法将 lambda 表达式转换为 bool 类型,因为它不是委托我收到以下错误,请有人帮助我,
大于等于 is >=not =>,这就是您收到错误的原因。
>=
=>
您的代码中有几个地方似乎您想使用比较运算符,但翻转了运算符。改变
=> to >=
'=>` 是 C# 用于指定lamba 表达式的语法。因此,您编写运算符的顺序很重要。
更新
vastus3根据您的评论,在 do 语句块之外无法访问该变量。要解决该错误,请将声明与其他声明一起上移:
vastus3
int vastus1, vastus2, vastus3;
整数 vastus3 = int.Parse(tekst1);
vastus3 = int.Parse(tekst1);