Abc.NCrafts.App.ViewModels.Questions.QuizLoader.LoadHelpContent C# (CSharp) Method

LoadHelpContent() private static method

private static LoadHelpContent ( string questionDirectoryPath ) : string
questionDirectoryPath string
return string
        private static string LoadHelpContent(string questionDirectoryPath)
        {
            var helpContentFilePath = Path.Combine(questionDirectoryPath, "Answer.md");
            if (!File.Exists(helpContentFilePath))
                return "No help available yet.";

            return File.ReadAllText(helpContentFilePath);
        }