BaconGame.GamePresenter.SaveQuestionFile C# (CSharp) Метод

SaveQuestionFile() публичный Метод

Saves the set of currently selected questions to a file.
public SaveQuestionFile ( string fileName ) : void
fileName string Name of the file.
Результат void
        public void SaveQuestionFile(string fileName)
        {
            FileHandler.CreateFileFromQuestions(fileName, FileHandler.CreateFileContentFromQuestions(_current.Questions));
        }