在属性中使用 int 常量

Use int constant in attribute(在属性中使用 int 常量)
本文介绍了在属性中使用 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 常量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)