-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix hiding inherited member (CS0108)
- Loading branch information
1 parent
8d96f91
commit 501499a
Showing
1 changed file
with
1 addition
and
5 deletions.
There are no files selected for viewing
6 changes: 1 addition & 5 deletions
6
sources/OpenMcdf.Extensions/OLEProperties/Interfaces/IDictionaryProperty.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
using System.IO; | ||
|
||
namespace OpenMcdf.Extensions.OLEProperties.Interfaces | ||
namespace OpenMcdf.Extensions.OLEProperties.Interfaces | ||
{ | ||
public interface IDictionaryProperty : IProperty | ||
{ | ||
void Read(BinaryReader br); | ||
void Write(BinaryWriter bw); | ||
} | ||
} |