Condividi tramite


Information.SystemTypeName(String) Metodo

Definizione

Restituisce un valore String contenente il nome del tipo di dati di sistema di una variabile.

public:
 static System::String ^ SystemTypeName(System::String ^ VbName);
public static string? SystemTypeName (string? VbName);
public static string SystemTypeName (string VbName);
static member SystemTypeName : string -> string
Public Function SystemTypeName (VbName As String) As String

Parametri

VbName
String

Obbligatorio. Variabile String contenente un nome di tipo di Visual Basic.

Restituisce

Restituisce un valore String contenente il nome del tipo di dati di sistema di una variabile.

Esempio

Nell'esempio seguente viene usata la SystemTypeName funzione per restituire i nomi dei tipi di dati per diverse variabili.

Dim vbLongName As String = "Long"
Dim vbDateName As String = "Date"
Dim vbBadName As String = "Number"
Dim testSysName As String
testSysName = SystemTypeName(vbLongName)
' The preceding call returns "System.Int64".
testSysName = SystemTypeName(vbDateName)
' The preceding call returns "System.DateTime".
testSysName = SystemTypeName(vbBadName)
' The preceding call returns Nothing.

Commenti

SystemTypeName restituisce il nome del tipo CLR (Common Language Runtime) completo corrispondente al nome del tipo Visual Basic. Ad esempio, se VbName contiene "Date", SystemTypeName restituisce "System.DateTime". Se SystemTypeName non riconosce il valore di VbName, restituisce Nothing (non la stringa "Nothing").

Si applica a

Vedi anche