Exemple #1
0
 /// <summary>
 /// Determines the comment of the <see cref="CentralDirectoryHeader"/> by decoding the comment bytes. Uses UTF-8
 /// encoding if the <see cref="FileData.Flags"/> indicate as such, otherwise uses the default code page.
 /// </summary>
 /// <param name="entry">The ZIP entry.</param>
 public static string GetComment(this CentralDirectoryHeader entry)
 {
     return(entry.GetComment(encoding: null));
 }