Deveel.Data.Sql.SqlStringBuilder.AppendLine C# (CSharp) Method

AppendLine() public method

public AppendLine ( ) : void
return void
        public void AppendLine()
        {
            Append(Environment.NewLine);

            lastNewLine = true;
        }

Same methods

SqlStringBuilder::AppendLine ( string s ) : void

Usage Example

Ejemplo n.º 1
0
        void ISqlFormattable.AppendTo(SqlStringBuilder builder)
        {
            builder.Append("WHEN ");
            if (Handled.IsForOthers)
            {
                builder.Append("OTHERS");
            }
            else
            {
                var names = String.Join(", ", Handled.ExceptionNames.ToArray());
                builder.Append(names);
            }

            builder.AppendLine("THEN ");
            builder.Indent();

            foreach (var statement in Statements)
            {
                statement.AppendTo(builder);
                builder.AppendLine();
            }

            builder.DeIndent();
        }
All Usage Examples Of Deveel.Data.Sql.SqlStringBuilder::AppendLine