How to find the length of the string?
Created at 19 Jul 2015, 11:28
How to find the length of the string?
19 Jul 2015, 11:28
How to find the length of the string?
Replies
emelenium
19 Jul 2015, 15:19
RE:
thanks
In CSharp you can determine the length of a string by this instruction
String myString = "myString";
int length = myString.Length;
@emelenium
aysos75
19 Jul 2015, 14:11
In CSharp you can determine the length of a string by this instruction
@aysos75