Class ISN_NSRange
A class used to describe a portion of a series, such as characters in a string or objects in an array.
Inheritance
System.Object
ISN_NSRange
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.iOS.Foundation
Assembly: cs.temp.dll.dll
Syntax
public class ISN_NSRange
Constructors
ISN_NSRange(Int64, Int64)
Initializes a new instance of the ISN_NSRange class.
Declaration
public ISN_NSRange(long location, long length)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | location | Location. |
System.Int64 | length | Length. |
Properties
Length
The number of items in the range (can be 0). For type compatibility with the rest of the system, System.Int64.MaxValue is the maximum value you should use for length.
Declaration
public long Length { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Location
The start index (0 is the first, as in C arrays). For type compatibility with the rest of the system, System.Int64.MaxValue is the maximum value you should use for location.
Declaration
public long Location { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 | The location. |