Preguntas etiquetadas con ternary-operator

102
Operador ternario taquigráfico de JavaScript

Sé que en php 5.3 en lugar de usar esta sintaxis de operador ternario redundante: startingNum = startingNum ? startingNum : 1 ... podemos usar una sintaxis abreviada para nuestros operadores ternarios cuando corresponda: startingNum = startingNum ?: 1 Y sé sobre el operador ternario en...

85
?: ?? Operadores en lugar de IF | ELSE

public string Source { get { /* if ( Source == null ){ return string . Empty; } else { return Source; } */ return Source ?? string.Empty; } set { /* if ( Source == null ) { Source = string . Empty; } else { if ( Source == value ) { Source = Source; } else { Source = value;...