Sub Main Dim myStr As New StringClass myStr.Append "World!" myStr.Prepend "Hello, " Debug.Print myStr 'Hello, world! End Sub