I have this code;
using System; namespace Rapido { class Constants { public static const string FrameworkName = \"Rapido Framework\"; }
You don't need to declare it as static - public const string is enough.
A const is already static as it cannot change between instances.
public static class Constants { public const string FrameworkName = "Rapido Framework"; }