在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 ...); }
我知道我也可以使用开关,但是大概有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 }
我不能要求这个信用,但我也不记得我在哪里看到了.所以,信用你,匿名互联网陌生人.