In a recent question on Stack Overflow, I asked how I might parse through a file name to extra meta info about a file.
After I worked through that problem, I decided
Pass-thru?
class BackupFileInfo : IEquatable { public long Length {get {return FileInfo.Length;}} //.... [snip] }
Also, a prop called FileInfo is asking for trouble... it may need disambiguation against the FileInfo class in a few places.
FileInfo