I have a method in Interface like this:
/// <summary>
/// Create File
/// </summary>
/// <param name="f">Files object</param>
/// <returns>True if success, else return false</returns>
bool Create(Entities.Files f);
The problem when I call this method, visual studio just hint the String “Create File”. I don’t know why it does not show the String in param and return

Also I try to put this comment into class that implements interface, it does not work too
IntelliSense does not show the contents of the
<returns>section, and it only shows the contents of a<param>section after you have “reached” the position of that parameter in your expression, e.g. you need to first typep.Create(to see it. That’s just how it works.