This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
不需要那么复杂的代码。据我所知,您需要
"cahalie"
上的"1"
和comboBoxAlpha.Text
否则。或者甚至
代码中的问题在于
return
而不是break
:returns
从方法返回,当break
只是破坏了
开关
:There's no need in that complex code. As fas as I can see, you want
"1"
on"cahalie"
andcomboBoxAlpha.Text
otherwise.Or even
The problem in your code is in
return
instead ofbreak
:returns
return from the method, whenbreak
just breaks the
switch
: