I am starting to work with a stringbuilder for the first time and wondering why this isn't displaying any text
Here is my code
Dim dependentsnames as StringBuilder
dependentsnames = New StringBuilder(child1.text)
dependentsnames.Append("," & child2.text)
label1.text = ( dependentsnames.ToString() )
Textbox child1, and child2 both contain text. I want to display both textboxes with a comma in between them.
Here is my code
Dim dependentsnames as StringBuilder
dependentsnames = New StringBuilder(child1.text)
dependentsnames.Append("," & child2.text)
label1.text = ( dependentsnames.ToString() )
Textbox child1, and child2 both contain text. I want to display both textboxes with a comma in between them.