溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#中怎么判斷數(shù)據(jù)類型

發(fā)布時間:2021-08-02 13:49:00 來源:億速云 閱讀:172 作者:Leah 欄目:編程語言

C#中怎么判斷數(shù)據(jù)類型,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

通過這段代碼,可以實(shí)現(xiàn)C#判斷數(shù)據(jù)類型

using System;  using System.Collections.Generic;  using System.Text;   public class Test2  {    public void aaB(string a, int b)          {              if(a!=null)        {          Console.WriteLine("The stirng  is " + a + ",  the number is " + b);        }        else        {          Console.WriteLine("error");        }          }    public void checkType(object type)    {          Console.WriteLine("The "+type+" type is {0},", type.GetType());    }    public static void Main()    {      Test2 ts = new Test2();      string a="my name is a";      int b=3662296;      ts.aaB(a,b);  //C#判斷數(shù)據(jù)類型    int   i   =   5;        string k="哈,今天的天氣不錯,我叫string ";      Console.WriteLine("i   is   an   int   ?   {0}" , i.GetType() == typeof(int));       Console.WriteLine("i   is   an   int   ?   {0}" , typeof(int).IsInstanceOfType(i));      Console.WriteLine("k   is   an   int   ?   {0}" , typeof(int).IsInstanceOfType(k));      Console.WriteLine("The type of k is {0},",k.GetType());      ts.checkType(k);      ts.checkType(i);     }   }

關(guān)于C#中怎么判斷數(shù)據(jù)類型問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI