本文介绍了是否可以在C#中重载nameof运算符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以在C#中重载nameof运算符吗?

Can I overload the nameof operator in C#?

C#编程指南已过时, C#6在幕后对我没有帮助.

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运算符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 22:20