Abc.NCrafts.App.ViewModels.Questions.QuizLoader.LoadHelpContent C# (CSharp) 메소드

LoadHelpContent() 개인적인 정적인 메소드

private static LoadHelpContent ( string questionDirectoryPath ) : string
questionDirectoryPath string
리턴 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);
        }