arrays

Created at 22 May 2015, 17:18
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!
MA

maxwell

Joined 22.05.2015

arrays
22 May 2015, 17:18


Hey, I wonder how you can implement an dynamic array where the size is not fixed, where you can store dat?

I thought you can youse C#, but List<T> dosnt work.


@maxwell
Replies

RodMar
22 May 2015, 20:05

RE:

maxwell said:

Hey, I wonder how you can implement an dynamic array where the size is not fixed, where you can store dat?

I thought you can youse C#, but List dosnt work.

 

 List<T>  works. You must include "using System.Collections.Generic;" ( and restart cAlgo after building);


@RodMar