gpt4 book ai didi

c# - "is"c# 多个选项

转载 作者:太空狗 更新时间:2023-10-29 22:53:24 25 4
gpt4 key购买 nike

return (
Page is WebAdminPriceRanges ||
Page is WebAdminRatingQuestions
);

有没有办法做到这一点:

return (
Page is WebAdminPriceRanges || WebAdminRatingQuestions
);

最佳答案

不,这样的语法是不可能的。 is运算符需要 2 个操作数,第一个是对象的实例,第二个是类型。

您可以使用 GetType():

return new[] { typeof(WebAdminPriceRanges), typeof(WebAdminRatingQuestions) }.Contains(Page.GetType());

关于c# - "is"c# 多个选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10716315/

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