|
Author |
Topic: array reference example (Read 1565 times) |
|
lunetta
|
array reference example
« on: Apr 3rd, 2005, 6:32pm » |
|
Hi I have a humble suggestion regarding the array documentation; as a beginner, I struggled with declaring an array with content - { 1, 2, 3, 4, 5} - because it's illegal to do something like Int[] myArray; myArray = { 1,2,3,4,5 } but it's legal to: int[] myArray; myArray = new int[] { 1,2,3,4,5 }; there could be an example with this...
|
|
|
|
|