Real world use cases for C# indexers?

后端 未结 14 1517
时光说笑
时光说笑 2020-12-04 15:26

I\'ve seen lot of examples for c# Indexers, but in what way will it help me in real life situations.

I know the C# guru wouldn\'t have added this if it wasn\'t a ser

14条回答
  •  时光说笑
    2020-12-04 16:11

    I am trying to get images from a sequence file. I need some sort of a 2D array or a jagged array to hold the pixel values. I am using indexers instead of arrays because looping over indexers is faster than looping over 2D or jagged arrays.

提交回复
热议问题