我是否需要为 C# 中的强制转换运算符重载提供强制转换方法,以允许人们在 VB 中使用

发布于 2024-07-22 05:31:28 字数 230 浏览 4 评论 0原文

我在某处读到,较旧的 VB .net(VB .NET 2005 之前的版本?)无法在 C# 类中使用重载运算符。 对于重载的强制转换运算符来说是这样吗?

无论哪种方式,你们认为 C# 类库不包含它们和算术方法作为其他语言的实际方法是一个缺点,例如:

ToDouble
ToFloat
FromDouble
Add
Subtract
Multiply
Divide
...

I read somewhere that older VB .net (pre VB .NET 2005?) couldn't use overloaded operators in a C# class. Is it true for overloaded cast operators?

Either way do you guys think it's a disadvantage for a C# class library not to include them and arithmetic methods as actual methods for other languages, like:

ToDouble
ToFloat
FromDouble
Add
Subtract
Multiply
Divide
...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟凡古楼 2024-07-29 05:31:28

VB 人们习惯于使用 CType(比 DirectCast 多得多),因此不要提供额外的方法,而是确保支持 CType(在 Reflector 中查看它实际使用哪些类)

VB people are used to doing CType (much more than DirectCast) so instead of providing extra methods make sure you support CType (look in Reflector to see which classes it actually uses)

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