Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Using s As New uCalc.String("A and C") '// Each Replace() call returns the modified string object, allowing the next call. s.Replace("A", "B").Replace("C", "D") Console.Write("Result: ") Console.WriteLine(s) End Using End Sub End Module