Skip to content

A simple class which reads the Apple EPF files and exposes it as a DataReader.

Notifications You must be signed in to change notification settings

gaurangsinha/AppleEPFReader.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

AppleEPFReader.NET

A simple class which reads the Apple EPF files and exposes it as a DataReader and Enumerable.

Implements IDataReader and IEnumerable completely.

##Usage## Include AppleEPFReader.cs in your project.

OR

Build the library and include that in your project.

using (var reader = new AppleEPFReader("PATH_TO_FILE")) { //Create new instance, open EPF file and initialize reader
  while (reader.Read()) {                                 //Read next record
    Console.WriteLine((string)reader["FIELD_NAME"]);      //Fetch 'FIELD_NAME' column and print to console
  }
}

##Build a library (dll)##

  1. Open the visual studio command prompt.
  2. Navigate to the directory where AppleEPFReader.cs is stored.
  3. Compile using the following command csc /target:library AppleEPFReader.cs
  4. You will find a AppleEPFReader.dll created in the directory which can now be included in your project.

##Apple Enterprise Partner Feed## Read more about Apple's EPF at http://www.apple.com/itunes/affiliates/resources/documentation/itunes-enterprise-partner-feed.html

About

A simple class which reads the Apple EPF files and exposes it as a DataReader.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages