int five = 5;
- when the variable five is equal to 5, write true
- when the variable five is not equal to 5, write false
How do I write a statement for this in ASP.NET using C#?
|
1
|
How do I write a statement for this in ASP.NET using C#? |
|||
|
|
|
I see that you want to use this to write the values out in ASP.NET, the |
||||||
|
|
|
Just to be safe, you should put your ternary expressions in parens (), because the ternary operator ?: has subtle precedence which can bite you if you aren't watching.
It's probably not important with this example, but if the ternary is part of a complex expression, precedence rules might make the compiler interpret the expression differently from what you intended. |
||
|
|
|
|
You could keep it really simple. Comparing five to 5 results in a boolean, so the following is also possible:
The bool type's ToString() method is already designed to return "True" or "False", and if the lowercase alternative is needed, thats simple too:
If you don't need it lowercased, you can actually completely eliminate the ToString as well:
|
||
|
|
|
|
Though, for this example, I wouldn't use the ternary operator at all:
|
||
|
|
|
|
The ternary operator in just about every language works as an inline if statement:
(You shouldn't strictly need the inner parens, but I like to include them for clarity.) If the boolean evaluates to true, then the entire expression is equal to the value between the I don't believe you can include lines of code in the middle of the operator. These are simply supposed to be expressions that replace the entire operator "phrase" once the condition is evaluated. I'm a Java guy and don't really know C#; maybe it's different. But probably not. |
||||||||
|
|
|
In ASP.NET, declarative (i.e, where the HTML goes):
Or, alternatively, in code behind (i.e., where your C# code and classes are):
|
|||
|
|
|
|
It works like this:
EDIT: What I had probably been thkinking:
|
||||||||
|