gpt4 book ai didi

c# - 如何检查ArrayList中对象的类型

转载 作者:IT王子 更新时间:2023-10-29 04:52:06 26 4
gpt4 key购买 nike

有没有办法获取arraylist中对象的类型?

我需要做一个如下的 IF 语句(在 C# 中):

if(object is int)
//code
else
//code

谢谢

最佳答案

您可以使用普通的 GetType() 和 typeof()

if( obj.GetType() == typeof(int) )
{
// int
}

关于c# - 如何检查ArrayList中对象的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2445885/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com