<c> (C# 程式設計手冊)
<c>text</c>
參數
- text
您要指定為程式碼的文字。
備註
<c> 標記讓您可以在一段描述中指出應該標記為程式碼的文字。 使用 <code> 將多行指定為程式碼。
使用 /doc 進行編譯,將文件註解處理為檔案。
範例
// compile with: /doc:DocFileName.xml
/// text for class TestClass
public class TestClass
{
/// <summary><c>DoWork</c> is a method in the <c>TestClass</c> class.
/// </summary>
public static void DoWork(int Int1)
{
}
/// text for Main
static void Main()
{
}
}