本文介绍了是否可以在C#中重载nameof运算符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以在C#中重载nameof
运算符吗?
Can I overload the nameof
operator in C#?
The C# programming guide is outdated and the C# 6 under the hood doesn't help me.
如何重载nameof
运算符?
推荐答案
nameof
运算符在编译时进行评估.
The nameof
operator is evaluated at compile-time.
因此,这些运算符不能重载.
So, these operator cannot be overloaded.
这篇关于是否可以在C#中重载nameof运算符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!