// Example bool is true
bool t = true;
// Convert bool to int
int i = t ? 1 : 0;
Console.WriteLine(i); // 1
Esto convierte a falso en 0 y verdadero a 1, ¿alguien me puede explicar cómo el t? 1: 0 funciona?C# ¿Alguien puede explicar esta lógica booleana
http://en.wikipedia.org/wiki/Ternary_operation –