Exemplo n.º 1
0
 public TarEntry(TarHeader header)
 {
     if (header == null)
     {
         throw new ArgumentNullException("header");
     }
     this.header = (TarHeader)header.Clone();
 }