Return to Snippet

Revision: 26355
at April 25, 2010 04:20 by alirezanoori


Initial Code
private void ReadInfo(string fileName)
        {
            StreamReader sr = new StreamReader(fileName);
            while (sr.Peek() >= 0)
            {
                string word = sr.ReadLine();
                string definitions = sr.ReadLine();

                string[] defColl = definitions.Split('/');

                WriteToExcel(word, defColl);
            }
        }

        private void WriteToExcel(string word, string[] defColl)
        {
            //http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/ef11a193-54f3-407b-9374-9f5770fd9fd7
        }

Initial URL


Initial Description


Initial Title
Babylon to Excel

Initial Tags


Initial Language
C#