C# - 全局内部常量?

发布于 2024-11-17 15:54:47 字数 276 浏览 2 评论 0原文

我正在尝试执行以下操作:

[FooAttribute(Value = String.Format("{0} - {1}", myReources.BaseString, "Bar"))]
public int FooBar { get; set; }

但是编译器会抱怨...那么当我将 BaseString 放在一个位置时,正确的方法是什么?我的代码中散布着库内属性的属性,因此“全局”内部 const 听起来像是解决方案,因为我无法使用资源。

I'm trying to do the following:

[FooAttribute(Value = String.Format("{0} - {1}", myReources.BaseString, "Bar"))]
public int FooBar { get; set; }

The compiler complains though... so what is the correct way to do it where I have my BaseString in one location? My code is littered with attributes on the properties inside my library, so "global" internal const sound like the solution since I can't use resources.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呢古 2024-11-24 15:54:47

您不能在属性中使用 string.Format 之类的表达式...但以下内容应该有效:

public class MyResources
{
    public const string BaseString = "there";
}

[FooAttribute(Value = MyReources.BaseString + " - Bar"))]
public int FooBar { get; set; }

You can't have expressions like string.Format in an attribute...but the following should work:

public class MyResources
{
    public const string BaseString = "there";
}

[FooAttribute(Value = MyReources.BaseString + " - Bar"))]
public int FooBar { get; set; }
零崎曲识 2024-11-24 15:54:47

如果删除 String.Format 并使用基本字符串连接,编译器不会抱怨。由于 String.Format 在运行时而不是编译时解析,因此您不能在属性中使用它。编译器将识别 myResources.BaseString 和“Bar”都是常量值,因此这样做是合法的。

<代码>
[FooAttribute(Value = myReources.BaseString + "Bar")]

If you remove the String.Format and use basic string concatenation, the compiler will not complain. Since String.Format is resolved at runtime and not compile time, you can't use it in attributes. The compiler will recognize that both the myResources.BaseString and "Bar" are constant values so it's legal to do this.


[FooAttribute(Value = myReources.BaseString + "Bar")]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文