0% found this document useful (0 votes)
22 views2 pages

Important C# String - Char Methods

The document lists important methods for manipulating strings and characters in C#. It includes various string methods such as Compare, Contains, and Trim, as well as character methods like IsDigit, IsLetter, and ToUpper. These methods are essential for performing operations on string and char data types in C# programming.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views2 pages

Important C# String - Char Methods

The document lists important methods for manipulating strings and characters in C#. It includes various string methods such as Compare, Contains, and Trim, as well as character methods like IsDigit, IsLetter, and ToUpper. These methods are essential for performing operations on string and char data types in C# programming.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Important C# String & Char Methods

String Methods
Compare (static)
CompareOrdinal (static)
Concat (static)
Contains
EndsWith
Format
IndexOf
IndexOfAny
Insert
IsNullOrEmpty
IsNullOrWhiteSpace
Join
LastIndexOf
PadLeft
Remove
Replace
ReplaceLineEndings
Split
StartsWith
Substring
ToCharArray
ToLower
ToUpper
Trim
TrimEnd
TrimStart

Char Methods
IsAscii(Char)
IsControl(Char)
IsDigit(Char)
IsLetter(Char)
IsLetterOrDigit(Char)
IsLower(Char)
IsNumber(Char)
IsPunctuation(Char)
IsSeparator(Char)
IsSymbol(Char)
IsUpper(Char)
IsWhiteSpace(Char) ​
ToLower(Char)
ToString()
ToUpper(Char) ​
TryParse(String, Char)

You might also like