Monobjc.Foundation.NSRange.NSMakeRange C# (CSharp) Method

NSMakeRange() public static method

Creates a new NSRange from the specified values.
Original declaration is : NSRange NSMakeRange(unsigned int location, unsigned int length)
public static NSMakeRange ( NSUInteger location, NSUInteger length ) : NSRange
location NSUInteger
length NSUInteger
return NSRange
		public static NSRange NSMakeRange(NSUInteger location,
		                                  NSUInteger length)
        {
            return new NSRange(location, length);
        }