/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.string.basicops/vb/trim2.vb
15 строк
381 B
Next Turn
Format codes based on .editorconfig, Part 12 (#18941)
15 июн 2020, 18:51
Не верифицирован
15 июн 2020, 18:51
6eb125b
Код
Авторство
О чём код?
' Visual Basic .NET Document Option Strict On ' <Snippet22> Module Example Public Sub Main() Dim header As String = "* A Short String. *" Console.WriteLine(header) Console.WriteLine(header.Trim({" "c, "*"c, "."c})) End Sub End Module ' The example displays the following output: ' * A Short String. * ' A Short String ' </Snippet22>