Browse Source

added documentation comment to FileService.GetOpenFile

pull/1/head
Siegfried Pammer 16 years ago
parent
commit
9df98cf3d9
  1. 3
      src/Main/Base/Project/Src/Services/File/FileService.cs

3
src/Main/Base/Project/Src/Services/File/FileService.cs

@ -336,6 +336,9 @@ namespace ICSharpCode.SharpDevelop @@ -336,6 +336,9 @@ namespace ICSharpCode.SharpDevelop
return fileNames;
}
/// <summary>
/// Gets the IViewContent for a fileName. Returns null if the file is not opened currently.
/// </summary>
public static IViewContent GetOpenFile(string fileName)
{
if (fileName != null && fileName.Length > 0) {

Loading…
Cancel
Save