Skip to content

Files

Latest commit

 

History

History
28 lines (18 loc) · 802 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 802 Bytes

EBCDIC.Net

This is port of EBCDIC project from http://www.yoda.arachsys.com/csharp/ebcdic/ to public Git repository

EBCDIC Encoding Library

Please see http://www.pobox.com/~skeet/csharp/ebcdic/ for more general information.

Building from the command line

  1. The character map reader (only used if you wish to add more encodings)

csc CharMapReader\CharMapReader.cs

(Produces CharMapReader.exe. Run in a directory containing EBCDIC-* files to produce ebcdic.dat, which should then be copied into the EbcdicEncoding directory.)

  1. The encoding library

csc /target:library /out:EbcdicEncoding.dll /res:EbcdicEncoding\ebcdic.dat,EbcdicEncoding.ebcdic.dat EbcdicEncoding*.cs

  1. The test program

csc /r:EbcdicEncoding.dll Test\Test.cs