DictionaryContainer.SetStringValue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| SetStringValue(NSString, NSString) |
Associates a nullable NSString with |
| SetStringValue(NSString, String) |
Associates a nullable String with |
SetStringValue(NSString, NSString)
Associates a nullable NSString with key.
protected void SetStringValue(Foundation.NSString key, Foundation.NSString? value);
member this.SetStringValue : Foundation.NSString * Foundation.NSString -> unit
Parameters
- key
- NSString
The identifier of the value to get.
- value
- NSString
The nullable NSString value to be associated with key. Pass null to remove any existing association.
Applies to
SetStringValue(NSString, String)
Associates a nullable String with key.
protected void SetStringValue(Foundation.NSString key, string? value);
member this.SetStringValue : Foundation.NSString * string -> unit
Parameters
- key
- NSString
The identifier of the value to get.
- value
- String
The nullable String value to be associated with key. Pass null to remove any existing association.