Te sugerimos que pruebes esta respuesta en un ambiente controlado antes de pasarlo a producción, saludos.
Ejemplo 1: c# ternario
// ---------------- Syntax of Ternary Operators ----------------- //
string stateOfMatter;int temperature =23;// ---- For just one condition ---- //
stateOfMatter = temperature <0?"Solid":"Liquid";// If temperature is below zero, then stateOfMatter is solid, otherwise// it will be liquid// ---- For more conditions ---- //
stateOfMatter = temperature <0?"Solid":(temperature >100?"Gas":"Liquid");
Ejemplo 2: condición ternaria c#
condition ? consequent : alternative
valoraciones y reseñas
Finalizando este artículo puedes encontrar los comentarios de otros programadores, tú incluso tienes la opción de insertar el tuyo si lo crees conveniente.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)