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
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.