Set one default value for the entire fixed array

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
2 Likes

Thanks. :+1::+1::+1:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.