I have an array consisting of more than 25k elements. All array values are integer. NOw i want to multiply all elements of this array by some number "n".... how can I do that with out iterating thru each element using a i.e. without using a foreach?
I am looking for this bcoz iterating thru such large array might affect the performance ...
Deepak