Exemplo n.º 1
0
            public void Write(int index, byte[] data)
            {
                if (node == null)
                {
                    throw new Exception("Stream closed for Write()!");
                }

                node.Write(index, data);
            }
Exemplo n.º 2
0
 public void Write(int index, byte[] data)
 {
     //write data bytes to the file node, starting at index
     if (node == null)
     {
         throw new Exception("Can't wirte to closed file stream");
     }
     node.Write(index, data);
 }
Exemplo n.º 3
0
 public void Write(int index, byte[] data)
 {
     node.Write(index, data);
 }