How to access array elements with Linq in VB.NET

1 Answer

0 votes
Imports System
Imports System.Linq

Public Class Program
	Public Shared Sub Main()
		Dim array = New String() {"c", "java", "c sharp", "c++", "python", "vb.net"}
		
        Console.WriteLine(array.ElementAt(2))
        Console.WriteLine(array.First())
        Console.WriteLine(array.Last())
    End Sub
End Class



' run:
'
' c sharp
' c
' vb.net
'

 



answered Jul 5, 2023 by avibootz

Related questions

...