AmaroK86.MassEffect3.DLCEditor.fileIsPresent C# (CSharp) Метод

fileIsPresent() приватный Метод

private fileIsPresent ( string fileName ) : bool
fileName string
Результат bool
        private bool fileIsPresent(string fileName)
        {
            foreach (sfarFile entry in dlcBase.fileList)
            {
                if (entry.fileName == fileName)
                    return true;
            }
            return false;
        }