public void Set(string key, FileMould value) { ValuePatch mv = new ValuePatch(); mv.Set(key, value); mValuePatchs[key] = mv; }
public ValuePatch _Set(string key, string v, FileMould t) { mDataValues[key] = new VData(v, t); return(this); }
public ValuePatch Set(string key, FileMould value) { return(_Set(key, null, value)); }
public VData(string v, FileMould t) { value = v; mFileTool = t; }
public void Set(string key, FileMould value) { mTool.Set(key, value); }