private Dictionary<string, object>/*!*/ GetInstanceVariables() {
if (_instanceVars == null) {
var newValue = new Dictionary<string, object>();
if (Interlocked.CompareExchange(ref _instanceVars, newValue, null) == null) {
return newValue;
}
}
return _instanceVars;
}