Rune.Explicit Operador

Definición

Sobrecargas

Explicit(Char to Rune)

Define una conversión explícita de un carácter Unicode de 16 bits en un Rune.

Explicit(Int32 to Rune)

Define una conversión explícita de un entero con signo de 32 bits en un Rune.

Explicit(UInt32 to Rune)

Define una conversión explícita de un entero sin signo de 32 bits en un Rune.

Explicit(Char to Rune)

Define una conversión explícita de un carácter Unicode de 16 bits en un Rune.

public:
 static explicit operator System::Text::Rune(char ch);
public static explicit operator System.Text.Rune (char ch);
static member op_Explicit : char -> System.Text.Rune
Public Shared Narrowing Operator CType (ch As Char) As Rune

Parámetros

ch
Char

Carácter Unicode de 16 bits que se va a convertir.

Devoluciones

Rune

ch como carácter Unicode de 32 bits.

Excepciones

ch es un escalar Unicode que representa un punto de código suplente.

Se aplica a

Explicit(Int32 to Rune)

Define una conversión explícita de un entero con signo de 32 bits en un Rune.

public:
 static explicit operator System::Text::Rune(int value);
public static explicit operator System.Text.Rune (int value);
static member op_Explicit : int -> System.Text.Rune
Public Shared Narrowing Operator CType (value As Integer) As Rune

Parámetros

value
Int32

Entero de 32 bits con signo que se va a convertir.

Devoluciones

Rune

value como carácter Unicode de 32 bits.

Excepciones

value es un escalar Unicode no válido.

Se aplica a

Explicit(UInt32 to Rune)

Importante

Esta API no es conforme a CLS.

Define una conversión explícita de un entero sin signo de 32 bits en un Rune.

public:
 static explicit operator System::Text::Rune(System::UInt32 value);
[System.CLSCompliant(false)]
public static explicit operator System.Text.Rune (uint value);
[<System.CLSCompliant(false)>]
static member op_Explicit : uint32 -> System.Text.Rune
Public Shared Narrowing Operator CType (value As UInteger) As Rune

Parámetros

value
UInt32

Entero de 32 bits con signo que se va a convertir.

Devoluciones

Rune

value como carácter Unicode de 32 bits.

Atributos

Excepciones

value es un escalar Unicode no válido.

Se aplica a