[Migrated content. Thread originally posted on 19 May 2012]
hi all,is there anyone to help to convert that I've wrote C# codes (below) to acucobol ?
Thanks.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Xml;
using System.IO;
namespace dvzget
{
class Program
{
static void Main()
{
Console.Clear();
DataSet myDoviz = new DataSet();
myDoviz.ReadXml("www.tcmb.gov.tr/.../today.xml");
string[] rowString = new string[myDoviz.Tables[1].Rows.Count];
int i = 0;
foreach (DataRow dr in myDoviz.Tables[1].Rows)
{
rowString
rowString
rowString
rowString
rowString
rowString
rowString
i ;
}
File.WriteAllLines(@"\\fortuna.700\\doviz.txt", rowString);
}
}
}
