Skip to main content

Can anyone pls advise how to convert below in to COBOL please

https://msdn.microsoft.com/en-us/library/hh485721(v=vs.110).aspx

Are there any MF samples any where that shows C# or VB.bet to MF Cobol?

Thanks

Neil

Can anyone pls advise how to convert below in to COBOL please

https://msdn.microsoft.com/en-us/library/hh485721(v=vs.110).aspx

Are there any MF samples any where that shows C# or VB.bet to MF Cobol?

Thanks

Neil

There is a section in the docs that shows COBOL and C# equivalencies for common programming constructs that you can find here:

There is also a video that covers some of this material called the Fundamentals of using Visual COBOL and .NET which you can find as part of the COBOL Rocks Tech Cast series that we did last year.

This is what the converted example would look like:

     $set ilusing"System.IO"
     $set ilusing"System.IO.Compression"
      program-id. Program1 as "testzipfile.Program1".
      procedure division.

          declare startPath as string = "c:\\example\\start"
          declare zipPath as string = "c:\\example\\result.zip"
          declare extractPath as string = "c:\\example\\extract"

          invoke type ZipFile::CreateFromDirectory(startPath, zipPath, type CompressionLevel::Fastest, true)
          invoke type ZipFile::ExtractToDirectory(zipPath, extractPath)

          goback.


Can anyone pls advise how to convert below in to COBOL please

https://msdn.microsoft.com/en-us/library/hh485721(v=vs.110).aspx

Are there any MF samples any where that shows C# or VB.bet to MF Cobol?

Thanks

Neil

Thats great info thanks Chris