style de span JavaScript
//an example of an "out of context" way to change color of a text:
<span style="color: green"></span>
MastaBatin
//an example of an "out of context" way to change color of a text:
<span style="color: green"></span>
// 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);
}
}