How to use snippet for remark method in linqpad?
e.g,in visual studio i can type /// on top of method then system will generate
/// <summary>
///
/// </summary>
/// <param name="xxx"></param>
/// <returns></returns>
But it's not work for LINQPad. How to use snippet for remark method in linqpad ?
I've tried to search LINQPad Keyboard and Mouse Shortcuts but not answer.
Comments
-
This feature is available in LINQPad 6, but not LINQPad 5. Note that it generates a simplified XML comment, i.e.:
/// <summary></summary>
-
@JoeAlbahari
thanks, is there any method can custom snippet in LINQPad5? -
Yes, you can write a custom snippet to do this in LINQPad 5. Right-click the editor and choose 'Create Code Snippet' and type in this:
/// <summary> /// $end$ /// </summary>
-
@JoeAlbahari thanks a lot !! it's awesome

