0
How to read the characters in a string?
Is there any method to read the characters of a string in c# language?
4 Respuestas
+ 1
character in string ? like an individual character ?
you can use []
string s = "something";
char c = s[1];
now c value is o
+ 1
So it is the same as reading arrays
0
if i remember correctly yes
0
Thanks bro👍👍👍