CCT.NUI.StartMenu.Persistence.CsvRepository.Load C# (CSharp) Метод

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

private Load ( ) : void
Результат void
        private void Load()
        {
            if (!File.Exists(this.filePath))
            {
                return;
            }
            this.menus.Clear();
            using (var reader = new StreamReader(this.filePath))
            {
                string line = null;
                while ((line = reader.ReadLine()) != null)
                {
                    this.ReadLine(line);
                }
            }
        }