VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > C#教程 >
  • C# | Char。GetTypeCode()方法示例

C# | Char。GetTypeCode()方法示例

原文:https://www . geeksforgeeks . org/c-sharp-char-gettypecode-method-with-examples/

该方法用于返回值类型 Char 的类型代码

语法:

public TypeCode GetTypeCode ();

返回值:这个方法返回枚举常量 Char。 下面的程序说明了 Char 的使用。GetTypeCode() 方法: 例 1:

c sharp . c sharp . c sharp . c sharp

// C# program to demonstrate
// Char.GetTypeCode() Method
using System;

class GFG {

    // Main Method
    public static void Main()
    {

        // Declaring val1 and val2
        char val1;
        bool val2;

        // initializing the
        // val1 and val2
        val1 = 'A';
        val2 = true;

        // getting TypeCode
        // using GetTypeCode() method
        TypeCode t1 = val1.GetTypeCode();
        TypeCode t2 = val2.GetTypeCode();

        // Display TypeCode
        Console.WriteLine("TypeCode of val1 is {0}", t1);
        Console.WriteLine("TypeCode of val2 is {0}", t2);
    }
}

Output:

TypeCode of val1 is Char
TypeCode of val2 is Boolean

例 2:

c sharp . c sharp . c sharp . c sharp

// C# program to demonstrate
// Char.GetTypeCode() Method
using System;

class GFG {

    // Main Method
    public static void Main()
    {

        // Declaring val1 and val2
        char val1;
        float val2;

        // initializing the
        // val1 and val2
        val1 = 'a';
        val2 = 20f;

        // calling get() method
        get(val1);
        get(val2);
    }

    // Defining the get() method
    public static void get(char val)
    {

        // getting TypeCode
        // using GetTypeCode() method
        TypeCode t = val.GetTypeCode();

        // Display the TypeCode
        Console.WriteLine("TypeCode of {0} is {1}",
                                          val, t);
    }

    public static void get(float val)
    {

        // getting TypeCode
        // using GetTypeCode() method
        TypeCode t = val.GetTypeCode();

        // Display the TypeCode
        Console.WriteLine("TypeCode of {0} is {1}",
                                            val, t);
    }
}

Output:

TypeCode of a is Char
TypeCode of 20 is Single

参考:

  • https://docs . Microsoft . com/en-us/dotnet/API/system . char . gettypecode?视图=netframework-4.7.2


相关教程