我有这个代码;

using System;

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

Visual Studio告诉我:The constant 'Rapido.Constants.FrameworkName' cannot be marked static
我如何才能从其他类中获取此常量,而不必创建该常量的新实例? (即,通过Rapido.Constants.FrameworkName直接访问它)

最佳答案

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

08-26 14:23