Exemplo n.º 1
0
 public GIniValuePair(string key, string val, GIniSection parent) : this(key, parent) => Vals    = val.Split(',').ToGList();
Exemplo n.º 2
0
 public GIniValuePair(string key, string[] vals, GIniSection parent) : this(key, parent) => Vals = new GList <string>(vals);
Exemplo n.º 3
0
 public GIniValuePair(string key, GIniSection parent)
 {
     Key    = key;
     Parent = parent;
 }