protected override string FormatLiteral(
            string value,
            bool useQuotes,
            bool escapeNonPrintable)
        {
            ObjectDisplayOptions objectDisplayOptions = ObjectFormatterHelpers.GetObjectDisplayOptions(useQuotes, escapeNonPrintable, false);

            return(ObjectDisplay.FormatLiteral(value, objectDisplayOptions));
        }
        protected override string FormatLiteral(
            char c,
            bool useQuotes,
            bool escapeNonPrintable,
            bool includeCodePoints = false)
        {
            ObjectDisplayOptions objectDisplayOptions = ObjectFormatterHelpers.GetObjectDisplayOptions(useQuotes, escapeNonPrintable, includeCodePoints);

            return(ObjectDisplay.FormatLiteral(c, objectDisplayOptions));
        }
 protected override string FormatLiteral(ulong value, CultureInfo cultureInfo = null)
 {
     return(ObjectDisplay.FormatLiteral(value, ObjectFormatterHelpers.GetObjectDisplayOptions(false, false, false), cultureInfo));
 }