Ejemplo n.º 1
0
 internal void WriteTable(string fileName, IG_Table table)
 {
     if (fileName != "")
     {
         File.WriteAllText(fileName, table.ToString(), Encoding.UTF8);
     }
     else
     {
         throw new Exception("파일명 - " + fileName + " - 이 정확하지 않습니다.");
     }
 }