
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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#
The Append() method add content to a StringBuilder.
Set a String −
StringBuilder str = new StringBuilder();
Now, loop through the number of elements you want and use Append () to append to StringBuilder −
for (int j = 0; j < 5; j++) { str.Append(j).Append(" "); }
The following is the complete code −
Example
using System; using System.Text; class Program { static void Main() { StringBuilder str = new StringBuilder(); for (int j = 0; j < 5; j++) { str.Append(j).Append(" "); } Console.WriteLine(str); } }
Output
0 1 2 3 4
Advertisements