I have this array :
Point[] arr = samples.pointsArray; I using this row to retrieve all elements that satisfy condition:
var maxXCol = arr.Where( p => maxX.X == p.X ); Any idea how to modify row above, to get only the indexes of these elements?
Thank you in advance!