C# 中的静态常量
我有这个代码;
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
const 已经是静态的,因为它不能在实例之间更改。
A const is already static as it cannot change between instances.
您不需要将其声明为静态 - public const string 就足够了。
You don't need to declare it as static - public const string is enough.