Hello everyone, I want to set specific value to the entire fixed-size array.
Is it possible? If yes, how?
My regards to all of you.
Hello everyone, I want to set specific value to the entire fixed-size array.
Is it possible? If yes, how?
My regards to all of you.
You could use Repeat().
myArray = Enumerable.Repeat("Mango", 10).ToArray
Thanks.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.