public _Node(_StorageKind storageKind)
 {
     Kind = storageKind;
     RawContents = new byte[0];
 }
 public _Node(_StorageKind storageKind)
 {
     Kind = storageKind;
     TextContents = string.Empty;
     RawContents = new byte[0];
 }