C# 中的通用范围验证

发布于 2024-10-30 22:13:12 字数 340 浏览 3 评论 0原文

我想要一个通用范围验证器(不是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞄了个咪的 2024-11-06 22:13:12

将泛型类型限制为 IComparable 并使用 CompareTo() 是满足您需要的正确方法。

Constraining your generic types to IComparable and using CompareTo() is the correct way to do what you need.

不甘平庸 2024-11-06 22:13:12

我知道这个回复晚了一年多,但以防万一有人正在寻找代码。看看这个

I know this response is over a year late, but just in case if someone is looking for the code. Look at this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文