المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Documentation description about the method and its parameters.



C# Programming
02-14-2010, 01:41 AM
I am wondering if it is possbile to show multiple line for this param name "searchPattern" in the ///summary section. (Documentation explaining about the method and its parameters.

I mean to show as this in 2 lines.
For all files, use "*.*".
For hex files only, use "*.hex"

Instead of on one line.
For all files, use "*.*". For hex files only, use "*.hex"



///
/// Gets the list of filenames in a certain directory path.
///
/// Directory path
/// For all files, use "*.*". For hex files only, use "*.hex"
/// List of filenames in a directory path.
///
public string[] GetFilenamesInDirectory(string path, string searchPattern)
{
....
}