Computers / Programming Convert RTF data to unmarked up string static public string ConvertToText(string rtf) { using(RichTextBox rtb = new RichTextBox()) { rtb.Rtf = rtf; return rtb.Text; } } Catch ArgumentException …
Programming TSQL convert int to string –Converts an int to a string SELECT CONVERT ( varchar , intcolumn ) FROM TABLE