SearchResult.MatchRange(Int32, Int32) Constructor
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.
Creates a new immutable range.
[Android.Runtime.Register(".ctor", "(II)V", "", ApiSince=31)]
public MatchRange (int start, int end);
[<Android.Runtime.Register(".ctor", "(II)V", "", ApiSince=31)>]
new Android.App.AppSearch.SearchResult.MatchRange : int * int -> Android.App.AppSearch.SearchResult.MatchRange
Parameters
- start
- Int32
The start point (inclusive)
- end
- Int32
The end point (exclusive)
- Attributes
Remarks
Creates a new immutable range.
The endpoints are [start, end)
; that is the range is bounded. start
must be lesser or equal to end
.
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.