About 678,000 results
Open links in new tab
  1. Strings - C# | Microsoft Learn

    Learn about strings in C# programming. See information on declaring and initializing strings, the immutability of string objects, and string escape sequences.

  2. String manipulation in C# and .NET: The complete guide

    Jan 22, 2025 · Introduction Strings are one of the most frequently used data types in C#. Whether you’re developing a small utility or a complex enterprise application, string manipulation plays …

  3. C# Strings - W3Schools

    A string in C# is actually an object, which contain properties and methods that can perform certain operations on strings. For example, the length of a string can be found with the Length property:

  4. C# String (With Examples) - Programiz

    In C#, a string is a sequence of characters. In this tutorial, we will learn about C# string and its methods with the help of examples.

  5. String Manipulation in C# - DEV Community

    Aug 4, 2025 · String manipulation is a vital part of C# development. Mastering methods like String.Concat, Join, Builder, and interpolation improves code clarity and performance. …

  6. Working with Strings in .NET / String Manipulation(Updated ...

    Oct 8, 2024 · String manipulation in C#/.NET is both versatile and efficient, thanks to the variety of tools available. Whether you’re dealing with user inputs, parsing text, or handling large …

  7. C# String Tutorial – String Methods With Code Examples

    Apr 1, 2025 · There are several methods present in the C# String class. In this tutorial, we will be discussing some of the most commonly used string methods in C#.

  8. Working with Text: String Manipulation in C#

    Home / C# Path / Working with Text: String Manipulation in C# Working with Text: String Manipulation in C# In nearly every application you test, from simple console outputs to …