How to print middle characters of char array with Console.WriteLine in VB.NET

1 Answer

0 votes
Imports System
				
Public Module Module1
	Public Sub Main()
		Dim array() As Char = {"a", "b", "c", "d", "e"}
 
        Console.WriteLine(array, 1, 3)
	End Sub
End Module



' run:
'
' bcd
'


answered Aug 17, 2018 by avibootz
edited Dec 15, 2023 by avibootz

Related questions

1 answer 178 views
1 answer 172 views
1 answer 190 views
2 answers 190 views
190 views asked Sep 5, 2020 by avibootz
1 answer 174 views
...