What does this line of code do? Really strange.
Posted
by Sergio Tapia
on Stack Overflow
See other posts from Stack Overflow
or by Sergio Tapia
Published on 2010-05-06T17:08:42Z
Indexed on
2010/05/06
17:18 UTC
Read the original article
Hit count: 221
What does this C# code mean. First time seeing it.
btnOK.Enabled = txtNick.Text.Length > 0 ? true : false;
© Stack Overflow or respective owner