Share via


CFMutableString Constructors

Definition

Overloads

Name Description
CFMutableString(CFString, IntPtr)

Create a new CFMutableString with a copy of the specified CFString and maximum length.

CFMutableString(String, IntPtr)

Create a new CFMutableString with the specified managed string and maximum length.

CFMutableString(CFString, IntPtr)

Create a new CFMutableString with a copy of the specified CFString and maximum length.

public CFMutableString(CoreFoundation.CFString theString, IntPtr maxLength = 0);
new CoreFoundation.CFMutableString : CoreFoundation.CFString * nativeint -> CoreFoundation.CFMutableString

Parameters

theString
CFString

The managed string to initialize the new CFMutableString with.

maxLength
IntPtr

nativeint

The maximum length of the new CFMutableString instance.

Applies to

CFMutableString(String, IntPtr)

Create a new CFMutableString with the specified managed string and maximum length.

public CFMutableString(string string = "", IntPtr maxLength = 0);
new CoreFoundation.CFMutableString : string * nativeint -> CoreFoundation.CFMutableString

Parameters

string
String

The managed string to initialize the new CFMutableString with.

maxLength
IntPtr

nativeint

The maximum length of the new CFMutableString instance.

Applies to