BattleShip.FileManager.fileIsLocked C# (CSharp) Метод

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

Check if the file is locked
private fileIsLocked ( ) : bool
Результат bool
        private bool fileIsLocked()
        {
            bool result = false;
            if (File.Exists(path + fullFileName + ".lock"))
            {
                result = true;
            }
            return result;
        }