Is there any way to automate Resharper to add function headers to all C# functions?
Eg
/// <summary />
/// <param name="path"></param>
/// <param name="logError"></param>
public FileFormatPluginLoader(string path, Action<string, Exception, bool> logError = null)
If I type /// at least once, then run Code Cleanup (Ctrl+e,c) it will create these. I would like it to also automate the initial /// step for functions with no XML header at all.
Is this possible with Resharper? Or do I require a third party program/script?