System.Xml.Xsl.Runtime.DecimalFormat.DecimalFormat C# (CSharp) Method

DecimalFormat() private method

private DecimalFormat ( NumberFormatInfo info, char digit, char zeroDigit, char patternSeparator ) : System.Diagnostics
info System.Globalization.NumberFormatInfo
digit char
zeroDigit char
patternSeparator char
return System.Diagnostics
        internal DecimalFormat(NumberFormatInfo info, char digit, char zeroDigit, char patternSeparator) {
            this.info = info;
            this.digit = digit;
            this.zeroDigit = zeroDigit;
            this.patternSeparator = patternSeparator;
        }
    }
DecimalFormat