Decimal.GetTypeCode Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
public:
virtual TypeCode GetTypeCode();
public TypeCode GetTypeCode ();
abstract member GetTypeCode : unit -> TypeCode
override this.GetTypeCode : unit -> TypeCode
Public Function GetTypeCode () As TypeCode
Návraty
Výčtová konstanta Decimal.
Implementuje
Příklady
Následující příklad kódu používá metodu GetTypeCode
k vrácení kódu typu pro Decimal
typ hodnoty.
// Example of the Decimal::GetTypeCode method.
using namespace System;
int main()
{
Console::WriteLine( "This example of the "
"Decimal::GetTypeCode( ) \nmethod "
"generates the following output.\n" );
// Create a Decimal object and get its type code.
Decimal aDecimal = Decimal(1.0);
TypeCode typCode = aDecimal.GetTypeCode();
Console::WriteLine( "Type Code: \"{0}\"", typCode );
Console::WriteLine( "Numeric value: {0}", (int)typCode );
}
/*
This example of the Decimal::GetTypeCode( )
method generates the following output.
Type Code: "Decimal"
Numeric value: 15
*/
// Example of the decimal.GetTypeCode method.
using System;
class DecimalGetTypeCodeDemo
{
public static void Main( )
{
Console.WriteLine( "This example of the " +
"decimal.GetTypeCode( ) \nmethod " +
"generates the following output.\n" );
// Create a decimal object and get its type code.
decimal aDecimal = new decimal( 1.0 );
TypeCode typCode = aDecimal.GetTypeCode( );
Console.WriteLine( "Type Code: \"{0}\"", typCode );
Console.WriteLine( "Numeric value: {0}", (int)typCode );
}
}
/*
This example of the decimal.GetTypeCode( )
method generates the following output.
Type Code: "Decimal"
Numeric value: 15
*/
// Example of the Decimal.GetTypeCode method.
open System
printfn $"This example of the decimal.GetTypeCode() \nmethod generates the following output.\n"
// Create a decimal object and get its type code.
let aDecimal = Decimal 1.0
let typCode = aDecimal.GetTypeCode()
printfn $"Type Code: \"{typCode}\""
printfn $"Numeric value: {int typCode}"
// This example of the decimal.GetTypeCode()
// method generates the following output.
//
// Type Code: "Decimal"
// Numeric value: 15
' Example of the Decimal.GetTypeCode method.
Module DecimalGetTypeCodeDemo
Sub Main( )
Console.WriteLine( "This example of the " & _
"Decimal.GetTypeCode( ) " & vbCrLf & "method " & _
"generates the following output." & vbCrLf )
' Create a Decimal object and get its type code.
Dim aDecimal As Decimal = New Decimal( 1.0 )
Dim typCode As TypeCode = aDecimal.GetTypeCode( )
Console.WriteLine( "Type Code: ""{0}""", typCode )
Console.WriteLine( "Numeric value: {0}", CInt( typCode ) )
End Sub
End Module
' This example of the Decimal.GetTypeCode( )
' method generates the following output.
'
' Type Code: "Decimal"
' Numeric value: 15
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.