コード例 #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);
 }