美文网首页
判断类型

判断类型

作者: 山猪打不过家猪 | 来源:发表于2022-07-10 16:05 被阅读0次

    判断类型

    • 获取变量的类型对象
    string str = "Hello World";
    Console.WriteLine(str.GetType());
    
    • 获取类型
    int num = 10;
    Console.WriteLine(num.GetType() == typeof(int));
    
    
    • is 方法
    enum Sex
    {
        male,
        Female
    }
    Sex sex = Sex.male;
    Console.WriteLine(sex is Enum);
    
    

    相关文章

      网友评论

          本文标题:判断类型

          本文链接:https://www.haomeiwen.com/subject/ozenbrtx.html