El método Double.GetTypeCode() se utiliza para devolver el código de tipo para el tipo de valor Double.
Sintaxis: público TypeCode GetTypeCode();
Valor devuelto: este método devuelve la constante enumerada, Doble.
Los siguientes programas ilustran el uso del método Double.GetTypeCode() :
Ejemplo 1:
// C# program to demonstrate the // Double.GetTypeCode() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 double value1 = 10d; // getting the typeCode // using GetTypeCode() method TypeCode value = value1.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode is {0}", value); } }
Producción:
TypeCode is Double
Ejemplo 2:
// C# program to demonstrate the // Double.GetTypeCode() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(5d); get(5.5d); get(10d); get(7.5d); } // defining get() method public static void get(double value1) { // getting the TypeCode // using GetTypeCode() method TypeCode value = value1.GetTypeCode(); // Display the TypeCode Console.WriteLine("TypeCode is {0}", value); } }
Producción:
TypeCode is Double TypeCode is Double TypeCode is Double TypeCode is Double
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA