Possible Duplicate:
The type of the conditional expression can not be determined?使用に奇妙なエラーがありますか?オペレータ
は、私は現在、この文を書いた:
byte? Col_8 = (Rad_8.SelectedValue == null) ? null : byte.Parse(Rad_8.SelectedValue);
を、それはこのエラーがあります:私は?
後にnullを使用することができますなぜ
Type of conditional expression cannot be determined because there is no implicit conversion between
'<null>'
and'byte'
を?上記のコードと等価である場合はif
の声明なし?
Rad_8.SelectedValueタイプとは何ですか? – CharlesB