Visual Studio Community 2022 problem with xml comments

Tom Meier 260 Reputation points
2024-03-22T18:37:14.44+00:00

I have a question concerning XML Comments in Visual Studio. I have an XML Comment above a Method(Get All Customers) in a project in my solution. For some reason I dont get any intellisense when I hover above the name of the method I have a comment on in another project where that Method is being called. I am wondering if this issue has something to do with me reading a comment on a Method thats in another project but I have referenced that project so I am not sure what could be causing this problem.

var customers = _wrkData.GetAllCustomers(SearchText);

///<summary>

///Gets All Customers

///</summary>

///<param name="customers"> Of Type Customer</param>

///<returns> List of Customers</returns>

public void GetAllCustomers(Customer customers)

{

}

Developer technologies Visual Studio Other
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.