以下の C# クラスは、定数を保持するためだけに使用されます。したがって、クラス名を使用してそれぞれにアクセスできます。したがって、「Constants.DIR_ARCHIVE」は「Archive」を提供します。
ObjectiveC で以下の C# クラスを定義するにはどうすればよいですか?
public class Constants
{
//Resource Directory Names
public const string DIR_ARCHIVE = "Archive";
public const string DIR_DEPARTMENTS = "Departments";
public const string DIR_FORMS = "Forms";
public const string DIR_GOAL_TRACKING = "GoalTracking";
public const string DIR_ROLES = "Roles";
public const string DIR_HOMEWORK = "HomeWork";
public const string DIR_POSTINGS = "Postings";
public const string DIR_SIGNUP = "SignUp";
public const string DIR_SITE_CONFIG = "System";
public const string DIR_PORTFOLIO = "Portfolio";
public const string DIR_MEMBERDEFINITION = "Definitions";
//Integer Constants
public const int LOG_DEFAULT_DURATION = 1;
//Other Constants
public const string OP_STATUS_ERROR = "Error";
public const string OP_STATUS_SUCCESS = "Success";
public const string OP_STATUS_WARNING = "Warning";
}