Explorar el Código

Update tableview.md

Removed reference to lineNumber in example code
Thomas Nind hace 4 años
padre
commit
63c20164ab
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      docfx/articles/tableview.md

+ 0 - 1
docfx/articles/tableview.md

@@ -18,7 +18,6 @@ foreach(var h in lines[0].Split(',')){
 				
 
 foreach(var line in lines.Skip(1)) {
-	lineNumber++;
 	dt.Rows.Add(line.Split(','));
 }
 ```