Replaces the characters in a substring of the message data with
characters in the specified string. The substring begins at the
specified start and extends to the character at index end-1. If needed,
the capacity of the data is extended so the entire substring can be
stored. If the string is null the substring is filled with
NO-DATA (0x1a). If the string is shorter than the substring, the
rest is filled with spaces.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax public void Replace(
int start,
int end,
string value
)
Public Sub Replace (
start As Integer,
end As Integer,
value As String
)
Parameters
- start
- Type: SystemInt32
the start index of the substring. - end
- Type: SystemInt32
the end index of the substring. - value
- Type: SystemString
the value that will replace the substring.
See Also