Beispiel #1
0
        public void Set(string key, FileMould value)
        {
            ValuePatch mv = new ValuePatch();

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