.Net
Will this code reverse ‘this.data’ ?
So List<DataCandle> dataReverse = this.data; essentially is assigning a reference to the list in this.data. So, this.data and dataReversed will be the same exact list. If you run .Reverse() on dataReverse then the list referenced Read more…