예제 #1
0
 public static void GetHtml(string rtf, ref HtmlStore store)
 {
     Rtf2HTML rtf2Html = new Rtf2HTML(rtf, ref store);
 }
예제 #2
0
        public static HtmlStore GetHtml(string rtf)
        {
            Rtf2HTML rtf2Html = new Rtf2HTML(rtf);

            return(rtf2Html.HtmlStore);
        }