My post below asked what the curly quotation marks were and why my app wouldn\'t work with them, my question now is how can I replace them when my program comes across them,
it worked for me, you can try below code
string replacedstring = ("your string with smart quotes").Replace('\u201d', '\'');
Thanks!