I have just installed the latest version of Aspose only to find masses of warnings for using doc.Range.Replace.
I don’t understand the change, do I now have to write a class for each replace I want to set up?
For example, I have
string CandidateName = "Testy McTesty";
const string tgCandidateName = @"[name]";
doc.Range.Replace(tgCandidateName, CandidateName, false, false);
I just want to do a simple text replace.
I also do this within tables
table.Range.Replace(IndexTag, SkillAreaIndex.ToString(), false, false);
What changes do I need here?
How do I write this in your new way of doing things?
Or can I just leave it because it still seems to work as it is!