Static Constants in C#

C#StringConstants

C# Problem Overview


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)

C# Solutions


Solution 1 - C#

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

Solution 2 - C#

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

Solution 3 - C#

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser47322View Question on Stackoverflow
Solution 1 - C#Mitch WheatView Answer on Stackoverflow
Solution 2 - C#ggf31416View Answer on Stackoverflow
Solution 3 - C#Andrew KennanView Answer on Stackoverflow