我有这样一段代码:
using System.Collections.Generic;
using System.Linq;
namespace PricingCoefficientService.Extensions
{
public static class IntExt
{
public static bool IsIn(this int integer, IEnumerable<int> collectionOfIntegers)
{
return collectionOfIntegers.Contains(integer);
}
}
}
它是一种扩展 int 的扩展方法。我相信它的功能是显而易见的。
但是,如果我不想使其通用以使其可用于每个值类型或对象怎么办?
任何想法?
谢谢你