Cobol files and C#

Does anyone have a routine to read cobol files and send it to a readable txt file or to a mdb, dataset ? Something that we can work with ?

Thanks

[158 byte] By [ZopoStyle] at [2007-12-22]
# 1

how exactly do you mean "read cobol files" ?

are cobol files plain files where you can view them from say notepad when you open a cobol file?

You can read any file using a StreamReader:

StreamReader theReader = new StreamReader("Filename.ext");

Then you can read the entire file:

string theContentsOfFile = theReader.ReadToEnd();

Before continuing, are you able to tell us what you mean by "reading cobol files" - how does a cobol file look like? (the source file). Is it "readable" to us humans if we opened the cobol source in notepad?

ahmedilyas at 2007-8-30 > top of Msdn Tech,Visual C#,Visual C# General...
# 2

It's a file that, I don't anything about it, I can open with the notepad but I can't copy it to paste here....it just paste a "0~" nothing more... the files extension is .idx and .dat

ZopoStyle at 2007-8-30 > top of Msdn Tech,Visual C#,Visual C# General...