Getting Error Msg - Cannot implicitly convert type 'string' to 'bool'
问题 I am checking for values in a textbox to trigger a conditional statement, but am getting error messages. if (txtAge.Text = "49") || (txtAge.Text = "59") { txtNote.Text = "A valid picture ID must be submitted"; } The error message I am getting is Cannot implicitly convert type 'string' to 'bool' How can I resolve this? 回答1: When you type this: if (txtAge.Text = "49") This basically is assigning "49" to txtAge.Text , and then returning that value as a string (equal to "49"). This is the same,