In Unity Monodevelop C#, how do I add a "comment" line top & bottom, so that it auto-generates as part of the XML documentation auto-completion? Currently, when /// is pressed above the class/method/etc, it auto-generates this:
/// <summary>
///
/// </summary>
public class MyClass : MonoBehaviour
I would like to add surrounding comment lines, top & bottom like this to the auto-completion:
// -----------------------------------------------
/// <summary>
///
/// </summary>
// -----------------------------------------------
public class MyClass : MonoBehaviour
and
// -----------------------------------------------
/// <summary>
/// Gets the thing.
/// </summary>
/// <returns>The thing.</returns>
// -----------------------------------------------
public int GetThing() {