다음을 통해 공유


NSMutableOrderedSet<TKey> 생성자

정의

오버로드

NSMutableOrderedSet<TKey>()
NSMutableOrderedSet<TKey>(NSCoder)

unarchiver 개체에 저장된 데이터에서 개체를 초기화하는 생성자입니다.

NSMutableOrderedSet<TKey>(NSMutableOrderedSet<TKey>)
NSMutableOrderedSet<TKey>(NSOrderedSet<TKey>)
NSMutableOrderedSet<TKey>(NSSet<TKey>)
NSMutableOrderedSet<TKey>(nint)
NSMutableOrderedSet<TKey>(TKey)
NSMutableOrderedSet<TKey>(TKey[])

NSMutableOrderedSet<TKey>()

public NSMutableOrderedSet ();

적용 대상

NSMutableOrderedSet<TKey>(NSCoder)

unarchiver 개체에 저장된 데이터에서 개체를 초기화하는 생성자입니다.

public NSMutableOrderedSet (Foundation.NSCoder coder);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : Foundation.NSCoder -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

coder
NSCoder

unarchiver 개체입니다.

설명

이 생성자는 클래스를 unarchiver에서 초기화할 수 있도록 제공됩니다(예: NIB 역직렬화 중). 이는 프로토콜의 NSCoding 일부입니다.

개발자가 이 개체의 하위 클래스를 만들고 보관 파일에서 역직렬화를 계속 지원하려는 경우 형식의 NSCoder 단일 매개 변수를 가져와서 [Export("initWithCoder:"] 특성 선언으로 데코레이트하는 동일한 서명을 사용하여 생성자를 구현해야 합니다.

이 개체의 상태는 도우미 메서드인 EncodeTo를 사용하여 직렬화할 수도 있습니다.

적용 대상

NSMutableOrderedSet<TKey>(NSMutableOrderedSet<TKey>)

public NSMutableOrderedSet (Foundation.NSMutableOrderedSet<TKey> other);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

적용 대상

NSMutableOrderedSet<TKey>(NSOrderedSet<TKey>)

public NSMutableOrderedSet (Foundation.NSOrderedSet<TKey> other);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : Foundation.NSOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

적용 대상

NSMutableOrderedSet<TKey>(NSSet<TKey>)

public NSMutableOrderedSet (Foundation.NSSet<TKey> source);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : Foundation.NSSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

source
NSSet<TKey>

적용 대상

NSMutableOrderedSet<TKey>(nint)

public NSMutableOrderedSet (nint capacity);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : nint -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

capacity
System.System.IntPtr System.nativeint

적용 대상

NSMutableOrderedSet<TKey>(TKey)

public NSMutableOrderedSet (TKey start);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : 'Key -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

start
TKey

적용 대상

NSMutableOrderedSet<TKey>(TKey[])

public NSMutableOrderedSet (params TKey[] objs);
new Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)> : 'Key[] -> Foundation.NSMutableOrderedSet<'Key (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject)>

매개 변수

objs
TKey[]

적용 대상