... when strings are so flexible. Seen all over some production code. string isValid = SomeDbFunction() == "" ? "T" : "F";...if(isValid == "T"){    ...} // The best partif(isValid != "F"){    ...} Read More