当前位置: 首页 > 工具软件 > SharpConfig > 使用案例 >

C# 写简单配置文件插件 SharpConfig 用法

狄睿
2023-12-01

using SharpConfig;
Configuration config = Configuration.LoadFromFile(Application.streamingAssetsPath + "/sample.cfg");
        Section section = config["General"];


        string someString = section["SomeString"].Value;
        int someInteger = section["SomeInteger"].GetValue<int>();
        float someFloat = section["SomeFloat"].GetValue<float>();


        object[] myArray = config["General"]["AnArray"].GetValue<object[]>();

 类似资料: