Johan Schoeman Expert Licensed User Longtime User May 7, 2014 #1 Is there a quick way to fill all the elements of an array with the same value when declaring the array such as for example Dim A(10) As Int = 7 or Dim A(10,10) As String = "hello"
Is there a quick way to fill all the elements of an array with the same value when declaring the array such as for example Dim A(10) As Int = 7 or Dim A(10,10) As String = "hello"
Erel B4X founder Staff member Licensed User Longtime User May 7, 2014 #2 No. You will need to use a loop to set the values. Upvote 0