TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About StringBuilder
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (5)
Gopi Chand (4)
David Mccarter (3)
C# Curator (3)
Jaimin Shethiya (2)
Sourav Kayal (2)
Hirendra Sisodiya (2)
Javeed M Shaikh (1)
Steven Woolston (1)
Lokendra Singh (1)
Vineet Kumar (1)
Mithilesh Tata (1)
Ziggy Rafiq (1)
Prakash Tripathi (1)
Muhammad Aqib Shehzad (1)
Tural Suleymani (1)
Ayushi Omray (1)
Shweta Lodha (1)
Chandan Sharma (1)
Shreesh Raj (1)
Amir Ali (1)
Abhishek Dubey (1)
Jiteendra Sampathirao (1)
Dennis Thomas (1)
Sushmita Kumari (1)
Abhimanyu K Vatsa (1)
Sateesh Arveti (1)
sushilsaini (1)
Amit Kumar Agrawal (1)
Tin Lam (1)
Stephen Armbrust (1)
Levent Yildiz (1)
Ashish Banerjee (1)
Related resources for StringBuilder
No resource found
How Does Your "Code Smell"
9/24/2024 4:16:49 AM.
"Code smell" refers to indicators in code that suggest potential problems. Common examples include poor exception handling, magic numbers, and inefficient string operations. Other issues inv
String Replacement With Named String Placeholders
6/14/2024 10:38:51 AM.
The anonymous nature of placeholders in the String.Format method can make it confusing. Find out how to use named string placeholders in your code.
Understanding String, StringBuffer and StringBuilder in Java
6/6/2024 4:51:14 AM.
This article delves into the fundamental concepts of String, StringBuffer, and StringBuilder in Java. It explains the differences between these three classes, their specific use cases, and performance
Difference between String & StringBuilder in .NET C#
6/5/2024 5:21:33 AM.
In .NET C#, String is immutable, meaning any modification creates a new instance, which can be inefficient for frequent changes. StringBuilder is mutable, designed for dynamic string manipulation with
String Builder in .NET C#: Usage, and Example
5/26/2024 12:11:21 PM.
Since the string type in C# is immutable, we are unable to alter its contents once they are created. This implies that attempting to modify a string-type object after it has been created will result i
Why Strings Are Immutable in .Net
5/1/2024 11:05:35 AM.
Explore the concept of immutable strings in .NET, understanding how strings are allocated in memory, and why they are immutable. Learn how immutability enhances memory management, prevents race condit
Improve Performance of .NET Application
4/24/2024 7:42:39 AM.
Enhance .NET application performance through techniques like code profiling, caching, asynchronous programming, and database query optimization. Implementing these strategies boosts efficiency and res
String vs StringBuilder in C# with Example
3/29/2024 10:53:45 AM.
In this article, we have explained the difference between String and StringBuilder in C# with example. Know the basic knowledge of String and StringBuilder in C#.
How To Truncate String In C#
3/20/2024 4:15:20 PM.
If you're looking to learn how to truncate a string in C#, then you've come to the right place. This article will provide you with the necessary information to accomplish this task efficiently
Comparison of String and StringBuilder in C#
9/12/2023 9:58:01 AM.
This article describes the differences between a String and a StringBuilder in C#, their use cases and performance comparisons.
Real World Coding Issues: Part I
6/29/2023 9:08:43 AM.
I hope you read all the articles in this series so you too can improve the performance and memory issues along with the common code issues that I see in the projects where I work. Most of the code sam
C# StringBuilder Tutorial With Code Examples
2/10/2023 4:44:45 AM.
C# StringBuilder is useful for concatenating multiple strings. The code examples demonstrate how to use a StringBuilder in C#.
StringBuilder and String Concatenation
2/9/2023 6:48:35 AM.
C# String Builder represented by the StringBuilder class in c# is used to concatenate strings in C# and provides string modifications methods including StringBuilder.Append(), StringBuilder.Remove(),
Convert HTML String To PDF Via iTextSharp Library And Download
12/21/2022 3:52:27 PM.
In this article, we will see how to convert HTML strings to PDF by using a third party PDF generation library.
String Vs StringBuilder In C#
10/26/2022 9:03:33 AM.
The differences between string and StringBuilder in .NET platform
Speeding Up The StringBuilder Using An ObjectPool
8/28/2022 4:00:51 PM.
In this article, you will learn how to speed Up the StringBuilder Using an ObjectPool.
Working with Strings in VB.NET
8/4/2022 5:59:08 AM.
This article is VB.NET version of Working with Strings in .NET using C#.
The Forward And Backward Shift String Problem
6/23/2021 2:13:22 AM.
We have a simple problem, we are given a string and we have to check if the new strings formed by forward shift and backward shift are the same or not.
Performance Analysis For String and StringBuilder
5/27/2021 7:20:47 AM.
This article will give you an overview of when and how to use the String and StringBuilder classes with proper statistical data using the CLR Profiler.
How to Add TextBox Dynamically Using JavaScript in ASP.Net
5/6/2021 9:20:47 AM.
Here, you will see how to create a TextBox upon each button click using JavaScript and CSS.
How To Use StringBuilder And File Class For .NET Application
11/23/2020 8:17:40 AM.
Here, I am going to share how and why should we create error log in our application.
Coding Faster With The dotNetTips Utility - StringBuilder Extensions
6/24/2020 10:20:15 PM.
In this article you will learn about coding faster with the dotNetTips Utility - StringBuilder Extensions.
HTTP in Android
2/27/2020 3:11:21 AM.
This article explains HTTP in Android. HTTP stands for HyperText Transfer Protocol. It is used for communication between the client and server. HTTP works as a request/response protocol between a clie
Learn StringBuffer Class in Java: Lecture 7
9/26/2019 6:19:28 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 6
9/26/2019 6:09:46 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 1
9/26/2019 5:24:49 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
String Handling in Java
9/12/2019 6:04:57 AM.
In this article, I describe what a string is and the difference between the String class and StringBuilder class and give an example of a general use method of string handling.
Difference Between StringBuffer and StringBuilder Class
7/30/2019 1:46:29 AM.
This article differentiates the two classes, StringBuffer & StringBuilder, using suitable parameters and examples.
StringBuilder Class In C#
6/6/2019 6:38:21 AM.
In this article, I will explain StringBuilder Class in C# and how to use a C# string builder to concatenate strings in C#.
String and StringBuilder Classes
10/24/2018 7:01:22 AM.
Here I'm going to tell you about what is String and StringBuilder and what the differences between String and StringBuilder classes.
5 Tips to Improve Your C# Code: Part 2
8/13/2018 4:04:49 AM.
In this article I would like to show memory consumption of various code snippets.
Tips And Best Practices To Improve ASP.NET Web Application Performance
5/24/2018 3:42:02 AM.
This article suggests you a few tips to improve the performance of an ASP.Net application. There are many more things which may ensure a better performance and faster response time for a web applicati
Modification in string using Stringbuilder class in VB.net
11/9/2012 11:16:06 AM.
This article shows that how to modify string using stringbuilder class in vb.net.
How to get Security UserId after windows Starts a Session
5/19/2012 4:17:09 AM.
This article explains how to get the security userid after a succesful login when windows starts the session for authenticated user.
Strings in C# - Part 4
8/9/2011 3:49:16 PM.
In this article you will learn how to use StringBuilder in C#.
Modification in string using Stringbuilder class in C#
7/27/2010 10:21:16 PM.
Modification in string using Stringbuilder class in C#
String Initialization and System.String Class using C#
1/26/2010 11:27:56 PM.
In this article I will explain you about the String Initialization and System.String Class.
Guide to Improving Code Performance in .NET: Part I
8/25/2009 11:50:05 PM.
This article explains about benefits of using StringBuilder instead of string.
Gathering a Web Site Users Information in ASP.NET
7/6/2009 1:06:57 AM.
In this article, I will show you how you can collect information about your site visitors using ASP.NET classes.
Reading and Display Source of Web Pages
6/4/2009 6:42:23 AM.
This sample project is made to help ASP.NET developers. This projects highlights how to add HTML page inside your ASP.NET page which is hosted on same or different webserver. This page can still run on that server and only output is included in the ASP.NET page.
Understanding ADO.Net Provider Factory in .Net 2.0
1/29/2007 3:47:21 AM.
This article describes the ADO.NET Provider Factory in .NET 2.0
Multi-threaded Web Applications - Case I: Search Engine
1/31/2006 4:24:41 AM.
This article is the first of the series of 4. I will demonstrate the use of threading in web applications by implementing a simply search engine. The following 3 articles in the series will be a Port Scanner, a Reverse DNS and a Web Hammer respectively.
Function to Change a Block of Text to Title Case
1/11/2006 4:45:00 AM.
Function to change a block of text to Title Case.
Effective C#: Working with Strings
1/3/2006 7:03:31 AM.
Using string might degrade the performance of your application. This article explains about what precautions you should take when you are going to use strings in your application.
CSDownloadURL : Download Contents of a Web Page
12/28/2005 6:13:19 AM.
CSDownloadURL is a class which has two functions - SetURL and DownloadURL. The set URL sets the current URL and GetDownload downloads the URL contents and returns its contents in a string.
How to Interpret Handwriting with C#
12/26/2005 1:26:04 AM.
In this article, I'll try to explain how to recognize handwriting with C# and GDI+.
Line Numbering Utility in C# and Java
12/17/2005 4:20:54 AM.
This is the first of the series of programs I wish to write to help myself get a handle on C#.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download