If I have the following code:
IObjectSet<AnalystLinkingXREF> AnalystLinkingXREFs { get; }
IObjectSet<Config> Configs { get; }
IObjectSet<ImportProfile_Column> ImportProfile_Column { get; }
How would I do a search and replace, to replace IObjectSet< ANYTHING > with result.
I’ve tried lots of things in the find box, most recently IObjectSet<{.+}> but nothing works.
You need to escape the angle brackets. (They’re special characters for beginning and end of word.) This seems to work.