Re: Intelisense Question
- From: "James Jenkins" <James@xxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 4 Sep 2005 19:53:38 +0100
"Adam" <Adam001@xxxxxxx> wrote in message
news:qjHSe.373384$s54.347488@xxxxxxxxxxx
> Hi James,
>
> First of all I would just like to thank you for your quick reply.
>
> The thing is tho that this does not work for a class library that I build
> and a reference to from a different project. I'm not sure if maybe i'm not
> doing something right but heres what i tried.
>
> namespace Testing
> {
> public class Test
> {
> /// <summary>
> /// iunno if this part matters we will see
> /// </summary>
> /// <param name="something">Testing to see if this works</param>
> public int Something(int x,int y)
> {
> return x + y;
> }
> }
> }
>
> Then i compiled it and added a reference to a windows application.
> When im in code view intellisense doesnt show either of the comments.
> If someone can see something that im not doing or am doing wrong i would
> appreciate your input
>
> James Jenkins wrote:
>> "Adam" <Adam001@xxxxxxx> wrote in message
>> news:cqFSe.372158$s54.150520@xxxxxxxxxxx
>>
>>>Hey Guys,
>>>
>>>What I?m trying to do is find out how to put those nifty descriptions in
>>>the intelisense popups.
>>>What I mean is, you know when your using intelisens in VS after you type
>>>the period the list of available methods, properties and objects is
>>>listed.
>>>When you hover your mouse over an item it will pop up with the parameters
>>>requires along with a brief description of what it does.
>>>Is there a way for me to code that into my class library, so when I
>>>reference it from another project I can use intelisens this way.
>>>
>>>Any help or input would be greatly appreciated
>>>
>>>- Adam
>>
>>
>> Hi Adam,
>>
>> within the code editor type 3 slashes /// - and a summary template will
>> be created for you - which you can customise as below -
>>
>> /// <summary>
>>
>> /// Starts an Interface
>>
>> /// </summary>
>>
>> /// <param name="NicName">Returns the Name of an interface</param>
>>
>> public void Start(string NicName)
>>
>> {
>>
>>
hi, - try going to the Project Properties and set the 'Xml Documentation
File' in - Configuration Properties - > Build - > Outputs
.
- Follow-Ups:
- Re: Intelisense Question
- From: omer kamal
- Re: Intelisense Question
- References:
- Intelisense Question
- From: Adam
- Re: Intelisense Question
- From: James Jenkins
- Re: Intelisense Question
- From: Adam
- Intelisense Question
- Prev by Date: Re: Intelisense Question
- Next by Date: Re: IDispatch definition in C#
- Previous by thread: Re: Intelisense Question
- Next by thread: Re: Intelisense Question
- Index(es):
Relevant Pages
|