TruePluto

Results 4 comments of TruePluto

string fileName = AppDomain.CurrentDomain.BaseDirectory + "5.doc"; if (!File.Exists(fileName)) { File.Create(fileName).Close() using (var document = DocX.Create(fileName)) { //创建一个1行3列的表格 var table = document.AddTable(3, 3); table.Design = TableDesign.LightList;//边框 table.Alignment = Alignment.center; table.SetWidths(); table.Rows[0].Cells[0].Paragraphs[0].Append("字体名称");...

thank you. the 3rd part.dll is designed by myself. with same environment. all code in the same project is ok but could not used as a reference project.

”which Roslyn ignores but doesn't block.“ Does Mean “It's just a makeshift or an expedient” thanks

``` //var adjacentEdges = observer.AdjacentEdges; var listOfPaths = observer.AllPaths(); foreach (var path in listOfPaths) { Console.Write( source); foreach (var edge in path) { Console.Write("->"+edge.Target); } Console.WriteLine(); } ``` why the...