feat: Exposing OpenRead method in IcdFile

This commit is contained in:
Chris Cameron
2018-06-06 10:02:00 -04:00
parent e4b0c9f91a
commit da31fae213

View File

@@ -66,6 +66,11 @@ namespace ICD.Common.Utils.IO
File.Delete(path);
}
public static IcdStream OpenRead(string path)
{
return new IcdFileStream(File.OpenRead(path));
}
[PublicAPI]
public static IcdFileStream OpenWrite(string path)
{