“¿lapso?” Código de respuesta

estilo JavaScript Span

//an example of an "out of context" way to change color of a text:
<span style="color: green"></span>
MastaBatin

lapso

// default is false, set 1 for true.
private int _threadSafeBoolBackValue = 0;

public bool ThreadSafeBool
{
    get { return (Interlocked.CompareExchange(ref _threadSafeBoolBackValue, 1, 1) == 1); }
    set
    {
        if (value) Interlocked.CompareExchange(ref _threadSafeBoolBackValue, 1, 0);
        else Interlocked.CompareExchange(ref _threadSafeBoolBackValue, 0, 1);
    }
}
Average Anaconda

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código