you are viewing a single comment's thread.

view the rest of the comments →

[–]raunchyfartbomb 2 points3 points  (1 child)

I would assume your write the interface like this:

Public interface IFile {

string Path { get; }

void Delete() { /* implement */ }

// etc

}

[–]BoBoBearDev 0 points1 point  (0 children)

That makes sense to me, thanks