Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Reflector 从我的工作中打开旧的 C# 代码,我发现enumSQL 类中有一个如下所示:
enum
public enum Column { bool, ... }
填充了列类型,并且由于enum它是保留关键字而无法编译。显然有人能够在某个时候编译它。我如何让它编译?
谢谢!
您需要使用字符文字(@符号)作为前缀才能使用关键字。
@
MSDN(感谢@erikH)