AppConfig m_configStr = new AppConfig("Test.Config", "hoge"); AppConfig m_configInt = new AppConfig("Test.Config.Int", -1); AppConfig m_configFloat = new AppConfig("Test.Config.Float", -1.11f); AppConfig m_configBool = new AppConfig("Test.Config.BoolTrue", false); m_configStr.Value = "test"; m_configInt.Value = 100; m_configFloat.Value = 9.99f; m_configBool.Value = true;