Partager via


MemoryMarshal.TryGetString Méthode

Définition

Tente d’obtenir la chaîne sous-jacente à partir d’un élément System.ReadOnlyMemory<Char>.

public:
 static bool TryGetString(ReadOnlyMemory<char> memory, [Runtime::InteropServices::Out] System::String ^ % text, [Runtime::InteropServices::Out] int % start, [Runtime::InteropServices::Out] int % length);
public static bool TryGetString (ReadOnlyMemory<char> memory, out string? text, out int start, out int length);
public static bool TryGetString (ReadOnlyMemory<char> memory, out string text, out int start, out int length);
static member TryGetString : ReadOnlyMemory<char> * string * int * int -> bool
Public Shared Function TryGetString (memory As ReadOnlyMemory(Of Char), ByRef text As String, ByRef start As Integer, ByRef length As Integer) As Boolean

Paramètres

memory
ReadOnlyMemory<Char>

Mémoire en lecture seule contenant un bloc de caractères.

text
String

Lorsque la méthode est retournée, la chaîne contenue dans la mémoire tampon.

start
Int32

Emplacement de départ dans text.

length
Int32

Nombre de caractères dans text.

Retours

true si la méthode a réussi à récupérer la chaîne sous-jacente ; sinon, false.

S’applique à