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
