/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.stringreader/vb/source.vb
25 строк
725 B
Andy De George
Move snippets from samples repo to this repo (#17296)
03 мар 2020, 19:23
Не верифицирован
03 мар 2020, 19:23
dbbeda1
Код
Авторство
О чём код?
'<snippet1> Imports System.IO Public Class CharsFromStr Public Shared Sub Main() Dim str As String = "Some number of characters" Dim b(str.Length - 1) As Char Using sr As StringReader = New StringReader(str) ' Read 13 characters from the string into the array. sr.Read(b, 0, 13) Console.WriteLine(b) ' Read the rest of the string starting at the current string position. ' Put in the array starting at the 6th array member. sr.Read(b, 5, str.Length - 13) Console.WriteLine(b) End Using End Sub End Class ' The example has the following output: ' ' Some number o ' Some f characters '</snippet1>