473,396 Members | 1,927 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

XML Comment tags don't work in my program

XML Comment tags (except summary, remarks, param and returns) don't work in my small trial program. The comment tags i want to work are see, seealso, exception, etc. But none of them work. I tried some code from net but no help. Do i have to do some extra settings in the project to make them work. please help.
Please check the code below. I don't think i have done any mistakes. Using this code, i build Comment Web Pages and was not able to see the seealso with link and exceptions. please help me.

using System;

namespace Comments
{
/// <summary>
/// This is a HelloUniverse class
/// </summary>
public class HelloUniverse
{
/// <summary>
/// Default Constructor
/// </summary>
public HelloUniverse()
{
}

/// <summary>
/// This is a base method
/// </summary>
/// <param name="intParamOne">Input Parameter One</param>
/// <returns>Return Paramter</returns>
public bool BaseMethod(int intParamOne)
{
return true;
}
}

/// <summary>
/// This is a HelloWorld class.
/// </summary>
/// <remarks>
/// Additional Info.
/// </remarks>
/// <seealso cref="HelloUniverse"/>
public class HelloWorld : HelloUniverse
{
/// <summary>
/// This is a field.
/// </summary>
bool bCheckThis;

/// <summary>
/// Default Constructor
/// </summary>
public HelloWorld()
{
}

/// <summary>
/// One Argument Constructor
/// </summary>
/// <param name="strParamOne">Input Parameter One</param>
public HelloWorld(string strParamOne)
{
}

/// <summary>
/// This is a property.
/// </summary>
/// <value>Holds a boolean value.</value>
/// <remarks>
/// Remarks for property.
/// </remarks>
public bool PropertyOne
{
set{bCheckThis = value;}
get{return bCheckThis;}
}

/// <summary>
/// This is a method with input parameters.
/// </summary>
/// <param name="strParamOne">Input Parameter One</param>
/// <param name="intParamTwo">Input Parameter Two</param>
/// <exception cref="System.Exception">Returns an exception</exception>
public void MethodOne(string strParamOne, int intParamTwo)
{
throw new Exception("Hello World");
}

/// <summary>
/// This is a method with return value.<see cref="MethodOne"/>
/// </summary>
/// <param name="strParamOne">Input Parameter One</param>
/// <returns>Return Parameter</returns>
/// <seealso cref="HelloWorld.MethodOne"/>
public bool MethodTwo(string strParamOne)
{
return true;
}
}
}
Thanx in advance,
faktujaa
Nov 15 '05 #1
0 1253

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jay Sartoris | last post by:
Hi, I'm adding a node to my XML document using DOM. When I serialize it, I lose my comments that are above my root node. I've created an OutputFormat obect and set the setOmitComments(false)...
13
by: walter | last post by:
I wrote a program, and found one line of source code not compiled out. I rewrote it for simplicity as below. The comment in the program is big5 code text. --- my program --- main(){ int i, a;...
11
by: ajikoe | last post by:
Hello, I used Visual C# Standard Edition. I want to comment my program using xml commentary method, I don't know why if I use value and example tag, it is not working / showed in the html...
1
by: Jianwei Sun | last post by:
I remember there is a tool which automatically put some simple comments on the properties and methods. I cannot find it anywhere, can somebody help me on this.
6
by: patrick j | last post by:
Hi I've been testing out the "Conditional Comment" for IE. This is because for my web-site I want to have two style sheets, one for IE 6 and one for other browsers. Thus I hope to have my...
29
by: dbhbarton | last post by:
Had a thought that's grown on me. No idea if it's original or not- too inexperienced in programming- but I guess there's no harm floating it out there. Python wins big on readability, and...
3
by: Paul Moore | last post by:
I'd like to write some scripts to analyze and manipulate my music files. The files themselves are in MP3 and FLAC format (mostly MP3, but FLAC where I ripped original CDs and wanted a lossless...
0
by: RolfK | last post by:
Hello All, I'm trying to output an XML node tree in COMMENT tags. Processing is done with XSLT2.0. The output schould be avild xml like this: <root> <e c="some element 1"/> <e c="some...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.