private string PrepareValue(string value) { value = value.Trim(); value = value .Replace("\"", "\\\""); value = DestinationValueFormatUtils.PrepareValueFormats(value, "s", "@", 1); return(value); }
private string PrepareValue(string value) { value = value.Trim(); if (value.StartsWith("?")) { value = "\\" + value; } value = value .Replace("'", "\\\'") .Replace("\n", "\\n") .Replace("...", "…"); value = DestinationValueFormatUtils.PrepareValueFormats(value, "s", "s", 1); return(value); }