What about null?
string s = "";
bool? result = null;
if(s == "Yes")
result = true;
elseif(s == "No")
result = false;