DataFile.GetInt
Declaration#
public Int32 GetInt(string section, string id, Int32 defaultValue)Parameters#
| Name | Description |
|---|---|
| section | Section to read |
| id | Key to read |
| defaultValue | Default value |
Description#
Gets integer value for a key on a specific section
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void ExampleMethod() { // You can create your own DataFiles to work with DataFile target = new DataFile();
// Values in a custom DataFile are never saved/loaded by the system // They can be saved/loaded manually var result = target.GetInt("customSection1", "int", 0); }
}