Exemplo n.º 1
0
        private static void VerifyFile(string name, ITemplateFileHandler handler)
        {
            if (handler.Exists)
            {
                return;
            }

            var content = Resources.Templates.ResourceManager.GetString(name + "_Code");

            handler.Write(content);
        }
Exemplo n.º 2
0
 public void Write(string content) => _handler.Write(content);