Want to build the ChatGPT based Apps? Start here
Become a member
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
TECHNOLOGIES
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
Training
Live
JOBS
MORE
CAREER
MEMBERS
About C# string
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 (10)
C# Curator (1)
Yogeshkumar Hadiya (1)
David Mccarter (1)
Jin Vincent Necesario (1)
Atul Sharma (1)
Mukesh Kumar (1)
Jasminder Singh (1)
Related resources for C# string
No resource found
Convert an Enum to a String in C#
2/21/2023 12:24:48 PM.
This code example shows how to convert an enum to a string in C#.
Convert char array to string in C#
2/21/2023 12:22:11 PM.
How to Convert char array to string using C#. The string class constructor takes an array of characters to create a new string from an array of characters.
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#.
6 Effective Ways To Concatenate Strings In C#
2/9/2023 3:53:44 PM.
Code examples of the most effective ways to concatenate strings in C#.
How To Use A String Collection in C#
2/9/2023 3:28:46 PM.
StringCollection is a collection of strings. In this article, learn how to take advantages of StringCollection methods and properties to manage a collection of strings. StringCollection class
Convert Byte Array To String In C#
2/9/2023 8:10:49 AM.
Learn to convert a C# byte array to a string in C# and .NET Core. Code example included.
Padding Strings In C#
2/9/2023 7:48:39 AM.
This code snippet shows how to pad strings in C# and .net core. Padding in the string is adding a space or other character at the beginning or end of a string. String class has String.PadLeft() and St
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(),
String Interpolation In C#
2/9/2023 5:17:51 AM.
C# string interpolation is used to format and manipulate strings. This feature was introduced in C# 6. Using string interpolation, we can use objects and expressions as a part of the string interpolat
C# Strings: The Ultimate Guide to Go from Novice to Expert!
2/9/2023 4:45:58 AM.
Learn how to work with strings in C#.
How To Replace Characters In A C# String
2/8/2023 4:12:14 AM.
In this article, you will learn how to replace a substring in a C# string.
Reverse Words In A String In C#
11/7/2022 6:24:29 AM.
Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Properly Comparing Strings with Globalization and Performance in .NET
11/12/2019 10:20:17 AM.
In Microsoft .NET there are many ways to compare strings. In this article, I will show a proper way to compare Strings with Globalization and Performance in .NET.
Playing With C# Strings Instance Methods
11/12/2019 7:55:40 AM.
String manipulation is one of the favorite subjects of developers when learning C#. In this article, we are going to focus on string instance methods. We might not cover every method, but most of the
C# String Interning For Efficient String Comparison
4/13/2019 11:17:39 AM.
In this article, we are going to cover String Interning - A very important feature of .NET Framework from the perspective of string comparison.
Top C# String Technical Interview Questions
4/1/2019 9:38:03 PM.
This article will demonstrate you, top 10 C# string technical interview questions and their solutions.
String is Immutable in C#
5/4/2014 11:49:54 AM.
Here we learn the behavior of strings, in terms of their performance, especially when an operation is performed on it, like we append a string to it.