1 write to _decimalBits
System.Data (1)
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
6496stateObj._decimalBits = Decimal.GetBits(value);
6 references to _decimalBits
System.Data (6)
fx\src\data\System\Data\SqlClient\TdsParser.cs (6)
6357bits = stateObj._decimalBits; // used alloc'd array if we have one already 6497Debug.Assert(null != stateObj._decimalBits, "decimalBits should be filled in at TdsExecuteRPC time"); 6519if (0x80000000 == (stateObj._decimalBits[3] & 0x80000000)) 6524WriteInt(stateObj._decimalBits[0], stateObj); 6525WriteInt(stateObj._decimalBits[1], stateObj); 6526WriteInt(stateObj._decimalBits[2], stateObj);