I have a WCF C # service with methods that contain comments in a summary. I use service links from my WPF project (client).
I commented in my interface:
[OperationContract]
Template GetTemplate();
And in my ministry too:
public Template GetTemplate()
{
return new Template();
}
I can use my methods with my client:
Template template = myServiceReferenceClient.GetTemplate();
But I want my comments (βLet me get a templateβ in this case) in Intellisense from my client this way:

I checked the "XML document file" in the properties of my project project to have comments, but it does not work. I think the problem is that I use service links:

source
share