vote up 1 vote down star
1
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#?

flag
good editing Jeff atwood thanks for edit my question by your hands – Gupta Ji Nov 5 at 8:01

7 Answers

vote up 5 vote down check
int five = 5;
string answer = five == 5 ? "true" : "false";

I see that you want to use this to write the values out in ASP.NET, the answer string will hold your desired value, use that as you please.

link|flag
great answer i try to do this from yesterday 's evening but now my problem is solved – Gupta Ji Nov 5 at 4:31
2  
A variation>> string answer = five == 5 ? bool.TrueString : bool.FalseString; – jdk Nov 5 at 5:12
vote up 0 vote down

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.

string answer = ( (five==5) ? ("true") : ("false") );

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.

link|flag
vote up 0 vote down

You could keep it really simple. Comparing five to 5 results in a boolean, so the following is also possible:

int five = 5;
Console.WriteLine((five == 5).ToString());

The bool type's ToString() method is already designed to return "True" or "False", and if the lowercase alternative is needed, thats simple too:

int five = 5;
Console.WriteLine((five == 5).ToString().ToLower());

If you don't need it lowercased, you can actually completely eliminate the ToString as well:

int five = 5;
Console.WriteLine(five == 5);
link|flag
vote up 0 vote down
Response.Write(five == 5 ? "True" : "False");

Though, for this example, I wouldn't use the ternary operator at all:

Response.Write(five == 5);
link|flag
vote up 3 vote down

The ternary operator in just about every language works as an inline if statement:

Console.WriteLine((five == 5) ? 'true' : 'false');

(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 ? and :. If the boolean evaluates to false, the expression equals the value after 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.

link|flag
just a note: Console.WriteLine() has nothing to do with ASP.NET – roman m Nov 5 at 4:28
agreed, but another note: I like your explanation, well done! :) – Abel Nov 5 at 4:32
@rm: Heh, oops. Sorry, was copying the other answerer's code and remembered that from the tiny bit of C# I remembered. :-) – Tenner Nov 5 at 4:34
but i forget to say thanks then very very thanks for help me on stack – Gupta Ji Nov 5 at 4:36
vote up 1 vote down

In ASP.NET, declarative (i.e, where the HTML goes):

<p>Is this five? <%= yourVariable == 5 ? "true" : "false"; %></p>

Or, alternatively, in code behind (i.e., where your C# code and classes are):

someTextBox.Text = yourVariable == 5 ? "true" : "false";
link|flag
vote up 0 vote down

five==5?console.writeline('true'):console.writeline('false')

It works like this:

<if-expression> ? <code-when-if-expression-evaluates-true> : <code-when-if-expression-evaluates-false>

EDIT:

What I had probably been thkinking:

<%=five==5?'true':'false'%>

link|flag
Console.WriteLine returns void. The ternary operator requires a return value and must be used as RH expression of an assignment. – Abel Nov 5 at 4:22
Ah, whoops! I don't have a compiler in front of me to test. Oh well. – FrustratedWithFormsDesigner Nov 5 at 4:27
are you really read my question i say for asp.net not for winform and your statement not worked if you do this in asp.net you get a error that "Compiler Error Message: CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement" – Gupta Ji Nov 5 at 4:27
That error is not related to being WinForms or ASP.NET. The error means what I explained in the first comment here: the ternary operator must be on the right-hand side of an assignment. Oh, and C# needs double quotes :) – Abel Nov 5 at 4:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.