是否可以在 C# 中创建自定义运算符?
可能的重复:
是否可以在 C# 中创建新运算符?< /a>
我想知道是否有可能在 C# 中创建自定义运算符,例如 if (a atleast 5)
。
上面的语句将显示,if a is at attestate is at attestation and do this.
我正在寻找更多关键字类型运算符,例如 typeof
或 is
>。
Possible Duplicate:
Is it possible to create a new operator in c#?
I was wondering if it is at all possible to create custom operators such as if (a atleast 5)
in C#.
The above statement would read, if a is at least 5 then do this.
I am looking for more of a keyword type operator like typeof
or is
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,C# 不允许自定义运算符。您可以重载某些预先存在的,但不能像 Haskell 或 F# 中那样创建自己的。
No, C# does not allow custom operators. You can overload certain pre-existing ones, but you cannot create your own like in Haskell or F#.