Hi Matt,
The dataset should not be returning encoded data, unless it is encoded in the table in your method account.
If the data is encoded you should be able to decode it with a simple .NET HttpUtility.HtmlDecode
e.g HttpUtility.HtmlDecode("<strong>Something Bold.</strong>") will return <strong>Something Bold.</strong>
Dave