语法
<paramref name="name"/>
参数
- name
要引用的参数名。 将此名称用双引号括起来 (" ")。
备注
// compile with: /doc:DocFileName.xml /// text for class TestClass public class TestClass { /// <summary>DoWork is a method in the TestClass class. /// The <paramref name="Int1"/> parameter takes a number. /// </summary> public static void DoWork(int Int1) { } /// text for Main static void Main() { } }