Implement entry.ToString(), let it return entry.Key (#351)

This commit is contained in:
Frederik Carlier
2018-02-16 14:43:23 +01:00
committed by Adam Hathcock
parent f893c1272c
commit a62f4df0b1

View File

@@ -65,6 +65,12 @@ namespace SharpCompress.Common
/// </summary>
public abstract bool IsSplit { get; }
/// <inheritdoc/>
public override string ToString()
{
return this.Key;
}
internal abstract IEnumerable<FilePart> Parts { get; }
internal bool IsSolid { get; set; }