String.IConvertible.GetTypeCode Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
virtual TypeCode System.IConvertible.GetTypeCode() = IConvertible::GetTypeCode;
TypeCode IConvertible.GetTypeCode ();
abstract member System.IConvertible.GetTypeCode : unit -> TypeCode
override this.System.IConvertible.GetTypeCode : unit -> TypeCode
Function GetTypeCode () As TypeCode Implements IConvertible.GetTypeCode
Restituisce
Costante enumerata String.
Implementazioni
Esempio
Nell'esempio seguente viene visualizzata TypeCode la costante enumerata per il String tipo .
// Sample for String.GetTypeCode()
using namespace System;
int main()
{
String^ str = "abc";
TypeCode tc = str->GetTypeCode();
Console::WriteLine( "The type code for '{0}' is {1}, which represents {2}.", str, tc.ToString( "D" ), tc.ToString( "F" ) );
}
/*
This example produces the following results:
The type code for 'abc' is 18, which represents String.
*/
// Sample for String.GetTypeCode()
using System;
class Sample
{
public static void Main()
{
String str = "abc";
TypeCode tc = str.GetTypeCode();
Console.WriteLine("The type code for '{0}' is {1}, which represents {2}.",
str, tc.ToString("D"), tc.ToString("F"));
}
}
/*
This example produces the following results:
The type code for 'abc' is 18, which represents String.
*/
' Sample for String.GetTypeCode()
Class Sample
Public Shared Sub Main()
Dim str As [String] = "abc"
Dim tc As TypeCode = str.GetTypeCode()
Console.WriteLine("The type code for '{0}' is {1}, which represents {2}.", _
str, tc.ToString("D"), tc.ToString("F"))
End Sub
End Class
'
'This example produces the following results:
'The type code for 'abc' is 18, which represents String.
'