Example #1
0
        public string LoadFromFile()
        {
            string templateFilePath = PathFormatter.GetTemplate(Name);

            if (!File.Exists(templateFilePath))
            {
                return("");
            }

            return(File.ReadAllText(templateFilePath));
        }