我做了这个代码,我想知道如何通过很少的工作让它更有效。这是我输入的 if then else 语句之一的示例:
If lblQuestion.Text = "anti-" Then
lblCorrectAnswer.Text = "against, opposed to, preventive; used as a prefix"
If txtPlayersAnswer.Text = "against, opposed to, preventive" Then
lblRight.Text = "Correct"
Else
lblRight.Text = "Wrong!"
End If
End If
我想知道是否可以对语句进行多种变体
If txtPlayersAnswer.Text = "against, opposed to, preventive" Then
例如:不必为该行代码编写每个可能的变体,有一种方法可以使该行代码具有所有可能的变体,如果是这样,如何?
先感谢您。