Use int constant in attribute(在属性中使用 int 常量)
问题描述
谁能解释为什么我不能在 C# 属性中使用 const Int32?
Can anybody explain why I can't use a const Int32 in an C# attribute?
例子:
private const Int32 testValue = 123;
[Description("Test: " + testValue)]
public string Test { get; set; }
让编译器说:
"属性参数必须是常量表达式,..."
"An attribute argument must be a constant expression, ..."
为什么?
推荐答案
由于错误状态,属性参数必须是 constant 表达式.
As the error states, an attribute argument must be a constant expression.
连接字符串和整数不是常量表达式.
Concatenating a string and an integer is not a constant expression.
因此,如果你通过 "Test:"+ 123
直接,它会给出同样的错误.另一方面,如果您将 testValue
更改为字符串,它将编译.
Thus, if you pass "Test: " + 123
directly, it will give the same error.
On the other hand, if you change testValue
to a string, it will compile.
常量表达式的规则规定常量表达式可以包含算术运算符,前提是两个操作数本身都是常量表达式.
The rules for constant expressions state that a constant expression can contain arithmetic operators, provided that both operands are themselves constant expressions.
因此,A";+ B"
仍然是不变的.
Therefore, "A" + "B"
is still constant.
但是,A";+ 1
使用字符串运算符+(string x, object y);
,其中整数操作数被装箱到一个对象中.
常量表达式规则明确指出
However, "A" + 1
uses the string operator +(string x, object y);
, in which the integer operand is boxed to an object.
The constant-expression rules explicitly state that
常量表达式中不允许进行其他转换,包括装箱、拆箱和非空值的隐式引用转换.
Other conversions including boxing, unboxing and implicit reference conversions of non-null values are not permitted in constant expressions.
这篇关于在属性中使用 int 常量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在属性中使用 int 常量


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01