i want to add simple html text to Monotouch.Dialog element.
i tried with
string htmlString= '<a href='mywebsite.org'>MyWebsite</a>';
then
new StringElement(htmlString );
but it is not recognizing html tags. it is considering html tag as regular text.
how can i display/achieve this(hyperlink) using Monotouch.Dialog.
Please let me know