C# 中的通用范围验证
我想要一个通用范围验证器(不是 aspnet 控件)来验证数字。
T m_min;
T m_max;
bool Validate<T>(T obj)
{
if (m_min > obj || obj > m_max)
我猜 .CompareTo 是我最好的选择,用 IComparable 限制 T 。
这会按预期工作吗?或者有什么问题吗?
“CompareTo”并没有给我带来“operator >”的良好感觉做。 :)
I would like to have a generic range validator (not an aspnet control) that validates numbers.
T m_min;
T m_max;
bool Validate<T>(T obj)
{
if (m_min > obj || obj > m_max)
I'm guessing .CompareTo is my best bet, restricting T with IComparable.
Would that work as intended or are there any catch?
"CompareTo" doesn't give me the good feeling the "operator >" does. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将泛型类型限制为
IComparable
并使用CompareTo()
是满足您需要的正确方法。Constraining your generic types to
IComparable
and usingCompareTo()
is the correct way to do what you need.我知道这个回复晚了一年多,但以防万一有人正在寻找代码。看看这个。
I know this response is over a year late, but just in case if someone is looking for the code. Look at this.