To find the first element in an array in C#, you can index the array using the [0]
indexer. For example:
main.cs104 chars4 lines
In this example, we create an int
array numbers
with five elements. To find the first element, we use the [0]
indexer, which returns the element at index 0 (the first element) in the array, and we assign this value to a variable firstNum
. Finally, we print out the value of firstNum
, which is 1
.
Note that indexing an empty array or an array with no elements will throw an IndexOutOfRangeException
. Therefore, it's important to check the length of an array first before accessing its elements.
gistlibby LogSnag