在C#中,有一种写这种方式的简便方法:

public static bool IsAllowed(int userID)
{
    return (userID == Personnel.JohnDoe || userID == Personnel.JaneDoe ...);
}

喜欢:
public static bool IsAllowed(int userID)
{
    return (userID in Personnel.JohnDoe, Personnel.JaneDoe ...);
}

我知道我也可以使用switch,但是我必须编写大约50个这样的函数(将经典的ASP站点移植到ASP.NET),所以我希望它们尽可能短。

最佳答案

这个怎么样?

public static class Extensions
{
    public static bool In<T>(this T testValue, params T[] values)
    {
        return values.Contains(testValue);
    }
}

用法:
Personnel userId = Personnel.JohnDoe;

if (userId.In(Personnel.JohnDoe, Personnel.JaneDoe))
{
    // Do something
}

我无法为此赞誉,但我也不记得在哪里看到它。因此,请相信您,匿名的互联网陌生人。

关于c# - C#中的速记条件,类似于SQL 'in'关键字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32937/

10-11 22:10