Beispiel #1
0
 void IConfigurable.Rebind(ConfigNode node)
 {
     _node = node;
     if (_config == null)
     {
         _config = new TrainingConfig(_node);
     }
     else
     {
         _config.Node = _node;
     }
 }
Beispiel #2
0
 void IConfigurable.Rebind(ConfigNode node)
 {
     _node = node;
     if(_config == null)
         _config = new TrainingConfig(_node);
     else
         _config.Node = _node;
 }