포럼: 掲示板 (Thread #6493)

列挙体、構造体について (2004-12-01 10:10 by Anonymous #12017)

昨日からVB.NET+VBCommenter+NDocを使い始めました。
NDocのHelpなどを見ていろいろ試しているのですが、
列挙体や、構造体の説明を入れることが出来るのでしょうか?
コメントの書式やタグなどご存じでしたらお教えください。

Reply to #12017×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login

RE: 列挙体、構造体について (2004-12-01 15:04 by yang #12019)

VB.NET を使った事が無いので詳しい説明はできませんが、
C# であれば

<summary>テスト列挙体</summary>
<remarks>テスト列挙体の説明</remarks>
public enum TestType
{
<summary>テスト1です</summary>
Test1,

<summary>summary は出力される</summary>
<remarks>remarks は出力されない</remarks>
Test2
}

の様に記述すれば概要、説明は出力されます。
でも、メンバの <remarks> は出力されません。

すみません、答えになってないですね。
Reply to #12017

Reply to #12019×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) Login