In VB6 I can use following code to change part of string with another string..
For example:
Dim strTest As String
strTest = "abc"
Mid$(strTest, 2, 1) = "x"
' now strTest Value will be "axc"
Is there any VB.Net equivalent for above? String.Replace will replace all instance but I don't want that.