Example #1
0
        public static string GetStatementsFromCollection(this CodeStatementCollection statementCollection, IStatementFactory statementFactory, CodeGeneratorOptions options)
        {
            if (statementCollection.Count <= 0)
            {
                return(string.Empty);
            }

            return(statementCollection
                   .OfType <CodeStatement>()
                   .Select(statement =>
            {
                var statementLines = statementFactory.GetStatement(statement, options);
                return statementLines.Expand();
            })
                   .Aggregate((previous, current) => $"{previous}{Environment.NewLine}{current}"));
        }