1
我需要一種方便的方式在C#中生成類或方法摘要的存根。喜歡這個樣本概要:我可以使用ReSharper生成類和方法摘要
public class TestClass
{
/// <summary>DoWork is a method in the TestClass class.
/// <para>Here's how you could make a second paragraph in a description. <see cref="System.Console.WriteLine(System.String)"/> for information about output statements.</para>
/// <seealso cref="TestClass.Main"/>
/// </summary>
public static void DoWork(int Int1)
我無法在ReSharper中找到這種功能。我認爲它是重構函數會有它,但他們似乎並沒有宣傳它。
也許是因爲Visual Studio開箱即可生成它的快捷方式?在那兒?將總結添加到類或方法的便捷方式是什麼?