comparison Main/jungle-main/store/operations/DeleteChildAtOperation.cs @ 31:1466993c104c

byte[] to object Rewrite.
author Kazuma Takeda
date Fri, 20 Jan 2017 07:08:03 +0900
parents 1f99e150f336
children f2ea780b3e80
comparison
equal deleted inserted replaced
30:236a58985e22 31:1466993c104c
30 public string getKey() 30 public string getKey()
31 { 31 {
32 return null; 32 return null;
33 } 33 }
34 34
35 public byte[] getValue() 35 public object getValue()
36 { 36 {
37 return new byte[1]{0}; 37 return null;
38 } 38 }
39 39
40 } 40 }
41 } 41 }