System.Data.SqlTypes.SqlDecimal.SqlDecimal C# (CSharp) Method

SqlDecimal() private method

private SqlDecimal ( bool fNull ) : System.Data.Common
fNull bool
return System.Data.Common
        private SqlDecimal(bool fNull)
        {
            _bLen =
            _bPrec =
            _bScale = 0;
            _bStatus = 0;
            _data1 =
            _data2 =
            _data3 =
            _data4 = s_uiZero;
        }

Same methods

SqlDecimal::SqlDecimal ( byte bPrecision, byte bScale, bool fPositive, int bits ) : System.Data.Common
SqlDecimal::SqlDecimal ( byte bPrecision, byte bScale, bool fPositive, int data1, int data2, int data3, int data4 ) : System.Data.Common
SqlDecimal::SqlDecimal ( decimal value ) : System.Data.Common
SqlDecimal::SqlDecimal ( double dVal ) : System.Data.Common
SqlDecimal::SqlDecimal ( int value ) : System.Data.Common
SqlDecimal::SqlDecimal ( long value ) : System.Data.Common
SqlDecimal::SqlDecimal ( uint rglData, byte bLen, byte bPrec, byte bScale, bool fPositive ) : System.Data.Common