How to find the length of the string?

Created at 19 Jul 2015, 11:28
EM

emelenium

Joined 23.09.2013

How to find the length of the string?
19 Jul 2015, 11:28


How to find the length of the string?


@emelenium
Replies

aysos75
19 Jul 2015, 14:11

In CSharp you can determine the length of a string by this instruction

            String myString = "myString";
            int length = myString.Length;


@aysos75

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