Monobjc.Foundation.NSRange.NSMakeRange C# (CSharp) 메소드

NSMakeRange() 공개 정적인 메소드

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
리턴 NSRange
		public static NSRange NSMakeRange(NSUInteger location,
		                                  NSUInteger length)
        {
            return new NSRange(location, length);
        }