예제 #1
0
 protected TarArchive(TarInputStream stream)
 {
     _userName = string.Empty;
     _groupName = string.Empty;
     if (stream == null)
     {
         throw new ArgumentNullException(nameof(stream));
     }
     _tarIn = stream;
 }