C#中怎么判斷數(shù)據(jù)類型,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、長(zhǎng)寧ssl等。為上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的長(zhǎng)寧網(wǎ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="哈,今天的天氣不錯(cuò),我叫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)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。