I'm editing the "Refactor Document Method" snippet in C# and not sure if it's possible to do what I want. I want to create a C# XML comment where it will print 3 lines for each method argument (see below). Assuming this isn't currently supported, one feature that would enable it would be a newline variable so I could insert newlines into a single parsed line.
Example possible snippet:
/// <param name="$MethodArgName$">$newline$/// $newline$/// </param>
Desired end result:
/// <param name="$MethodArgName$">
///
/// </param>
So, can I do this now? And if not, could it be added?
Thanks.