C# 中的静态常量

发布于 2024-07-19 02:09:13 字数 344 浏览 3 评论 0原文

我有这个代码;

using System;

namespace Rapido
{
    class Constants
    {
        public static const string FrameworkName = "Rapido Framework";
    }  
}

Visual Studio 告诉我:常量 'Rapido.Constants.FrameworkName' 不能标记为静态

如何使该常量可从其他类中使用,而无需创建它的新实例? (即通过Rapido.Constants.FrameworkName直接访问它)

I have this code;

using System;

namespace Rapido
{
    class Constants
    {
        public static const string FrameworkName = "Rapido Framework";
    }  
}

Visual Studio tells me: The constant 'Rapido.Constants.FrameworkName' cannot be marked static

How can I make this constant available from other classes without having to create a new instance of it? (ie. directly accessing it via Rapido.Constants.FrameworkName)

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

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

发布评论

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

评论(3

内心荒芜 2024-07-26 02:09:13
public static class Constants
{
    public const string FrameworkName = "Rapido Framework";
}
public static class Constants
{
    public const string FrameworkName = "Rapido Framework";
}
左岸枫 2024-07-26 02:09:13

const 已经是静态的,因为它不能在实例之间更改。

A const is already static as it cannot change between instances.

柏拉图鍀咏恒 2024-07-26 02:09:13

您不需要将其声明为静态 - public const string 就足够了。

You don't need to declare it as static - public const string is enough.

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