예제 #1
0
파일: LinearUtils.cs 프로젝트: phreed/GMac
        public static LinearComposer AppendNewLine(this LinearComposer textBuilder, ParametricComposer template, IParametericComposerValueSource parametersValues)
        {
            var text = template.GenerateText(parametersValues);

            return(textBuilder.AppendNewLine(text));
        }
예제 #2
0
파일: LinearUtils.cs 프로젝트: phreed/GMac
        public static LinearComposer AppendNewLine(this LinearComposer textBuilder, ParametricComposer template, IDictionary <string, string> parametersValues)
        {
            var text = template.GenerateText(parametersValues);

            return(textBuilder.AppendNewLine(text));
        }