Here are the examples of the csharp api class BinderTool.Core.Bdf4.Bdf4FileStream.ReadHeader() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Example
1
1. Example
View licensepublic static Bdf4FileStream OpenFile(string inputPath, FileMode mode, FileAccess access) { FileStream inputStream = new FileStream(inputPath, mode, access); Bdf4FileStream bdfStream = new Bdf4FileStream(inputStream); bdfStream.ReadHeader(); return bdfStream; }