Beispiel #1
0
 private static void ListTables(BISharp.Contracts.Tables tables)
 {
     foreach (var table in tables.value)
     {
         Console.WriteLine(table.name);
         if (table.columns != null)
         {
             ListColumns(table.columns);
         }
     }
 }