예제 #1
0
파일: diff.cs 프로젝트: reactxx/rewise
 public string push(string str, TInfo info)
 {
     items.Add(new Item {
         diffs = Diff.CreateDiff(Value, str), info = info
     });
     Value = str;
     return(Value);
 }