示例#1
0
文件: ConOut.cs 项目: ruialexrib/Ink
 public ConOut BorderTable(string[] headers, string[][] colLines, int[] lengths)
 {
     Console.Write(ConUtility.BorderTable(headers, colLines, lengths));
     return(this);
 }
示例#2
0
文件: ConOut.cs 项目: ruialexrib/Ink
 public ConOut BorderTable <TModel>(IEnumerable <TModel> models)
 {
     Console.Write(ConUtility.BorderTable(models));
     return(this);
 }