12 c# Working with Strings

Опубликовано: 06 Январь 2023
на канале: Moshax
75
5

سلسلة تعلم c sharp للمبتدئين

Working with Strings In C#
a string is a series of characters that is used to represent text. It can be a character, a word or a long paragraph surrounded with the double quotes "

size of a String,maximum size of a String object

ways to declare a string in c#string

can be created using a char array or accessed like a char array

Special Characters,Use backslash ,Immutability of strings in c#

Verbatim string literals in c# , Raw string literals in c#

String escape sequences in c# , Format strings in c#

Accessing individual characters in c# , Null strings and empty strings in c#

Using stringBuilder for fast string creation, Modify string contents in C#

Query for characters in a string (LINQ)