Edit

Share via


BindableString.Implicit Operator

Definition

Overloads

Implicit(BindableString to String)

Returns the raw value of the BindableString.

Implicit(String to BindableString)

Creates a BindableString that has a raw value assigned.

Implicit(BindableString to String)

Returns the raw value of the BindableString.

public static implicit operator string (Microsoft.Toolkit.Uwp.Notifications.BindableString b);
static member op_Implicit : Microsoft.Toolkit.Uwp.Notifications.BindableString -> string
Public Shared Widening Operator CType (b As BindableString) As String

Parameters

b
BindableString

The BindableString to obtain the raw value from.

Returns

Applies to

Implicit(String to BindableString)

Creates a BindableString that has a raw value assigned.

public static implicit operator Microsoft.Toolkit.Uwp.Notifications.BindableString (string d);
static member op_Implicit : string -> Microsoft.Toolkit.Uwp.Notifications.BindableString
Public Shared Widening Operator CType (d As String) As BindableString

Parameters

d
String

The raw value

Returns

Applies to