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
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand(5)
Gopi Chand(4)
David Mccarter(3)
C# Curator(3)
Jaimin Shethiya(2)
Hirendra Sisodiya(2)
Sourav Kayal(2)
Lokendra Singh(1)
Mithilesh Tata(1)
Tural Suleymani(1)
Shreesh Raj(1)
Prakash Tripathi(1)
Jiteendra Sampathirao(1)
Shweta Lodha(1)
Ziggy Rafiq(1)
Ayushi Omray(1)
Dennis Thomas(1)
Muhammad Aqib Shehzad(1)
Steven Woolston(1)
Vineet Kumar(1)
Chandan Sharma(1)
Amir Ali(1)
Abhishek Dubey(1)
Abhimanyu K Vatsa(1)
Sateesh Arveti(1)
Sushmita Kumari(1)
Levent Yildiz(1)
sushilsaini (1)
Stephen Armbrust(1)
Tin Lam(1)
Ashish Banerjee(1)
Resources
No resource found
Understanding String, StringBuffer and StringBuilder in Java
Jun 06, 2024.
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 implications.
Difference between String & StringBuilder in .NET C#
Jun 05, 2024.
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 without creating new instances.
String vs StringBuilder in C# with Example
Mar 29, 2024.
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#.
String Vs StringBuilder In C#
Oct 26, 2022.
The differences between string and StringBuilder in .NET platform
Speeding Up The StringBuilder Using An ObjectPool
Aug 28, 2022.
In this article, you will learn how to speed Up the StringBuilder Using an ObjectPool.
Coding Faster With The dotNetTips Utility - StringBuilder Extensions
Jun 24, 2020.
In this article you will learn about coding faster with the dotNetTips Utility - StringBuilder Extensions.
How To Use StringBuilder And File Class For .NET Application
Nov 14, 2017.
Here, I am going to share how and why should we create error log in our application.
Difference Between StringBuffer and StringBuilder Class
May 26, 2015.
This article differentiates the two classes, StringBuffer & StringBuilder, using suitable parameters and examples.
Comparison of String and StringBuilder in C#
Feb 04, 2014.
This article describes the differences between a String and a StringBuilder in C#, their use cases and performance comparisons.
Modification in string using Stringbuilder class in VB.net
Nov 09, 2012.
This article shows that how to modify string using stringbuilder class in vb.net.
String and StringBuilder Classes
Nov 12, 2010.
Here I'm going to tell you about what is String and StringBuilder and what the differences between String and StringBuilder classes.
Modification in string using Stringbuilder class in C#
Jul 27, 2010.
Modification in string using Stringbuilder class in C#
C# StringBuilder Tutorial With Code Examples
Feb 01, 2010.
C# StringBuilder is useful for concatenating multiple strings. The code examples demonstrate how to use a StringBuilder in C#.
Performance Analysis For String and StringBuilder
Feb 24, 2014.
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.
StringBuilder Class In C#
Jul 17, 2009.
In this article, I will explain StringBuilder Class in C# and how to use a C# string builder to concatenate strings in C#.
StringBuilder and String Concatenation
Oct 01, 2002.
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(), and StringBuilder.Replace().
String Builder in .NET C#: Usage, and Example
May 26, 2024.
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 in the creation of a new instance of the object in memory.
Real World Coding Issues: Part I
May 29, 2023.
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 samples are from this project along with some from my OOS project Spargine and some from ChatGPT.
How To Truncate String In C#
Apr 12, 2023.
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 and effectively. Don't waste any more time searching for answers - read on and become a master of C# string truncation today! By Ziggy Rafiq
The Forward And Backward Shift String Problem
Jun 21, 2021.
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.
Tips And Best Practices To Improve ASP.NET Web Application Performance
Dec 01, 2017.
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 application. I am discussing only a few of the best practices that will help you avoid some unwanted performance hitters from your application. So, you will have a more light weight application which runs quicker and gives a better response time.
Convert HTML String To PDF Via iTextSharp Library And Download
Apr 15, 2016.
In this article, we will see how to convert HTML strings to PDF by using a third party PDF generation library.
Learn StringBuffer Class in Java: Lecture 7
May 22, 2015.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 6
May 20, 2015.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 1
May 12, 2015.
This article explains the StringBuffer() class in Java and Java strings in general.
String Replacement With Named String Placeholders
Apr 22, 2015.
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.
Why Strings Are Immutable in .Net
Mar 13, 2015.
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 conditions in multi-threaded applications, and optimizes hash table usage.
How to Add TextBox Dynamically Using JavaScript in ASP.Net
Apr 17, 2014.
Here, you will see how to create a TextBox upon each button click using JavaScript and CSS.
HTTP in Android
Dec 04, 2013.
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 client and a server.
Improve Performance of .NET Application
Oct 22, 2013.
Enhance .NET application performance through techniques like code profiling, caching, asynchronous programming, and database query optimization. Implementing these strategies boosts efficiency and responsiveness, ensuring optimal user experience.
5 Tips to Improve Your C# Code: Part 2
Jul 06, 2013.
In this article I would like to show memory consumption of various code snippets.
String Handling in Java
Feb 17, 2012.
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.
Strings in C# - Part 4
Aug 09, 2011.
In this article you will learn how to use StringBuilder in C#.
String Initialization and System.String Class using C#
Jan 26, 2010.
In this article I will explain you about the String Initialization and System.String Class.
Guide to Improving Code Performance in .NET: Part I
Aug 25, 2009.
This article explains about benefits of using StringBuilder instead of string.
How to get Security UserId after windows Starts a Session
Feb 23, 2006.
This article explains how to get the security userid after a succesful login when windows starts the session for authenticated user.
How to Interpret Handwriting with C#
Sep 02, 2005.
In this article, I'll try to explain how to recognize handwriting with C# and GDI+.
Reading and Display Source of Web Pages
Dec 30, 2003.
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.
Gathering a Web Site Users Information in ASP.NET
Aug 26, 2003.
In this article, I will show you how you can collect information about your site visitors using ASP.NET classes.
Function to Change a Block of Text to Title Case
Nov 20, 2002.
Function to change a block of text to Title Case.
Multi-threaded Web Applications - Case I: Search Engine
Mar 07, 2002.
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.
Working with Strings in VB.NET
Feb 05, 2002.
This article is VB.NET version of Working with Strings in .NET using C#.
Line Numbering Utility in C# and Java
May 08, 2001.
This is the first of the series of programs I wish to write to help myself get a handle on C#.
Effective C#: Working with Strings
Mar 12, 2001.
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
Dec 03, 2000.
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.
About StringBuilder
NA
OUR TRAINING