Replaces specified range [begin, end) of the content into the given string.
Namespace: Sgry.AzukiAssembly: Azuki (in Azuki.dll) Version: 1.7.13.40248
Syntax
C# |
---|
public void Replace(
string text,
int begin,
int end
) |
Visual Basic |
---|
Public Sub Replace (
text As String,
begin As Integer,
end As Integer
) |
Parameters
- text
- Type: System..::..String
specified range will be replaced with this text
- begin
- Type: System..::..Int32
begin index of the range to be replaced
- end
- Type: System..::..Int32
end index of the range to be replaced
Exceptions
Exception | Condition |
---|
System..::..ArgumentNullException | Parameter text is null. |
System..::..ArgumentOutOfRangeException | Specified index is out of valid range. |
See Also