XML comments

S

Saso Zagoranski

Hi!

I have a question about XML comments included in VS. net.

Let's say I have a project in a solution. And this project has a class with
some methods:

class MyClass
{

/// <summary>...</summary>
/// <param name="param1"> parameter1</param>
/// <returns> some string </returns>
public string MyMethod(string param1)

{

}

public void TestMethod()
{
}
}

If I write this.MyMethod while in MyClass VS shows me the comments I have
written...
but if I call MyClass.MyMethod from another project IntelliSense only shows
the type and name of the parameter, which is the same as if I didn't write
comments at all...

I would like to send my assemblies to other people as well and would like
them to read the comments so they would know what each parameter does.

How can I fix this? Do I have to use another tag instead of "param"?

thanks,
saso
 
M

Miha Markic

Hi Saso,

Intellisense pulls information out of assemblyname.xml file (which should
reside near dll file).
Include that xml file and intellisense will happily shows the info.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top