Beispiel #1
0
        static DataUtil()
        {
            String formatProperty = Java.GetSystemProperty("frontend.util.dumpformat", "SCIENTIFIC");// Properties.Resources.ResourceManager.GetString(,);

            if (String.Compare(formatProperty, "DECIMAL", StringComparison.OrdinalIgnoreCase) == 0)
            {
                _dumpFormat = DECIMAL;
            }
            else if (String.Compare(formatProperty, "HEXADECIMAL", StringComparison.OrdinalIgnoreCase) == 0)
            {
                _dumpFormat = HEXADECIMAL;
            }
            else if (String.Compare(formatProperty, "SCIENTIFIC", StringComparison.OrdinalIgnoreCase) == 0)
            {
                _dumpFormat = SCIENTIFIC;
            }
        }