

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Append to StringBuilder in C# with a new line on the end
The AppendLine() method appends the content and add a new line on the end.
Firstly, set the StringBuilder −
StringBuilder str = new StringBuilder();
Use AppendLine() −
str.AppendLine("Accessories"); str.AppendLine(); str.AppendLine("Electronics");
The following is the complete code −
Example
using System; using System.Text; class Demo { static void Main() { StringBuilder str = new StringBuilder(); str.AppendLine("Accessories"); str.AppendLine(); str.AppendLine("Electronics"); Console.Write(str); } }
Output
Accessories Electronics
- Related Questions & Answers
- Append to StringBuilder in C#
- Append values to the end of a masked array in Numpy
- Find the other end point of a line with given one end and mid using C++
- Find a new line character with JavaScript RegExp.
- How to append new rows to DataFrame using a Template In Python Pandas
- Break the line based on word with CSS
- Group buttons on a single line with Bootstrap
- How to new line string - JavaScript?
- How to print new line in Java?
- Match optional end of line after every record with REGEXP?
- Search text containing a new line in MySQL?
- Inserting new line to the output using WS_Download in ABAP
- Python program to delete a new node from the end of the doubly linked list
- Python program to insert a new node at the end of the Doubly Linked List
- Python program to insert a new node at the end of the Circular Linked List
Advertisements