OpenIDE.UI.RunCommandForm.getFileName C# (CSharp) Méthode

getFileName() private méthode

private getFileName ( string dir, string x, string tail ) : ListViewItem
dir string
x string
tail string
Résultat ListViewItem
        private ListViewItem getFileName(string dir, string x, string tail)
        {
            return informationList.Items.Add(x.Substring(dir.Length, x.Length - dir.Length).TrimStart(new char[] { Path.DirectorySeparatorChar }) + tail);
        }