StringBuilder Length and Capacity : StringBuilder « Language Basics « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Language Basics » StringBuilderScreenshots 
StringBuilder Length and Capacity
StringBuilder Length and Capacity
 
Imports System
Imports System.Text

Public Class MainClass

   Shared Sub Main()
      Dim buffer As StringBuilder = _
         New StringBuilder("Hello, how are you?")

      Dim output As String = "buffer = " & buffer.ToString & _
         vbCrLf & "Length = " & buffer.Length & vbCrLf & _
         "Capacity = " & buffer.Capacity

      buffer.EnsureCapacity(75)

      Console.WriteLine("New capacity = " & _
         buffer.Capacity)

      buffer.Length = 10
      
      Console.WriteLine("New Length = " & _
         buffer.Length & vbCrLf & "buffer = ")

   End Sub ' Main

End Class


           
         
  
Related examples in the same category
1.Use StringBuilder for fast processing stringsUse StringBuilder for fast processing strings
2.StringBuilder Performance Test
3.StringBuilder: Char and ReplaceStringBuilder: Char and Replace
4.Demonstrating StringBuilder class constructorsDemonstrating StringBuilder class constructors
5.Use StringBuilder IndexerUse StringBuilder Indexer
6.StringBuilder Append methodsStringBuilder Append methods
7.StringBuilder method AppendFormatStringBuilder method AppendFormat
8.Insert and Remove of the StringBuilder classInsert and Remove of the StringBuilder class
9.StringBuilder Replace methodStringBuilder Replace method
10.Append String to StringBuilderAppend String to StringBuilder
11.Append bool data type values to a StringBuilder object.
12.Append SByte data type values to a StringBuilder object.
13.Insert String to StringBuilder
14.Insert char array to StringBuilder
15.Insert Object to StringBuilder
16.Insert xInt32 to StringBuilder
17.Insert System.SByte to StringBuilder
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.