AppSettings.ExampleSetting.Reload C# (CSharp) Method

Reload() private method

private Reload ( TableRow row ) : void
row TableRow
return void
        internal void Reload(TableRow row)
        { 
            Id = row.Get_string(row.Values[0], ""); 
            Name = row.Get_string(row.Values[1], ""); 
            KeyString = row.Get_string(row.Values[2], ""); 
            Number = row.Get_int(row.Values[3], ""); 
            StrArray = row.Get_string_array(row.Values[4], ""); 
            StrIntMap = row.Get_Dictionary_string_int(row.Values[5], ""); 
        }