diff --git a/src/SharpCompress/Common/Entry.cs b/src/SharpCompress/Common/Entry.cs
index 5f07af2f..409a8a2a 100644
--- a/src/SharpCompress/Common/Entry.cs
+++ b/src/SharpCompress/Common/Entry.cs
@@ -65,6 +65,12 @@ namespace SharpCompress.Common
///
public abstract bool IsSplit { get; }
+ ///
+ public override string ToString()
+ {
+ return this.Key;
+ }
+
internal abstract IEnumerable Parts { get; }
internal bool IsSolid { get; set; }