StringBuilder.Delete(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deletes a sequence of characters specified by start
and end
.
[Android.Runtime.Register("delete", "(II)Ljava/lang/StringBuilder;", "")]
public Java.Lang.StringBuilder Delete (int start, int end);
[<Android.Runtime.Register("delete", "(II)Ljava/lang/StringBuilder;", "")>]
member this.Delete : int * int -> Java.Lang.StringBuilder
Parameters
- start
- Int32
the inclusive start index.
- end
- Int32
the exclusive end index.
Returns
- Attributes
Exceptions
if start
is less than zero, greater than the current
length or greater than end
.
Remarks
Java documentation for java.lang.StringBuilder.delete(int, int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.