I have a 2-dimensional array i need to convert first diagonal numbers in to zero,,for eg i need to convert first diagonal numbers of arrays[1 2 3 ] 5 9 5 3 2 1
means 1 9 1 in to zero that is the answer is just like [0 2 3] 5 0 5 3 2 0
Can you give me the required c# code in an Optimized way