How to find the length of the string?

Created at 19 Jul 2015, 11:28
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
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