Why does this work:
if ("xx".StartsWith("x"))
{
}
But this doesn't:
if ("xx" + "xx".StartsWith("x"))
{
}
Compiler says error CS0029: Cannot implicitly convert type 'string' to 'bool'
|
|
The member access operator Check C# Operators (MSDN) for the C# operator priorities. In particular it lists This means It seems you expected it to be interpreted as |
||||
|
|
|
Because in the second case you try to compile such code:
|
|||||||||||||||
|
|
Wrap it in Parens
The reason for the error is that a |
|||||||||
|
|
It has to do with the precedence of operators. In your case, StartsWith returns bool and when combined with a string addition string + bool does not return a bool, it returns a string while the if ( ) expects a bool. You can change the precedence of operations by using parenthesis. |
|||
|
|
|
Because the Compiler is evaluating function-calls first, so he will try to concatenate
This implicit conversion is not possible during runtime. You'll need to tell the compiler to concatenate the strings first:
|
||||
|
|
|
|
|||||
|
is returning a Change your code to
|
|||
|
|
|
if () expects a boolean value which your expression isnt. This is in contrast from C/C++ which expects an int value as a condition. |
|||
|
|
|
"xx" + "xx".StartsWith("x") is not a boolean expression. It evaluates to "xxTrue". |
|||
|
|
|
The concatenation operator (+) is doing an implicit cast to a string in the second example. That example is also checking to see if a string is set not if it starts with something. |
|||
|
|
|
The reason is because the
Hope this helps |
|||
|
|