We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97c6865 commit 438f2adCopy full SHA for 438f2ad
snippets/csharp/VS_Snippets_ADO.NET/Classic WebData DataView Example/CS/source.cs
@@ -65,7 +65,7 @@ private void PrintTableOrView(DataTable table, string label)
65
Console.WriteLine("\n" + label);
66
for(int i = 0; i<table.Rows.Count;i++)
67
{
68
- Console.WriteLine("\table" + table.Rows[i]["item"]);
+ Console.WriteLine(table.Rows[i]["item"]);
69
}
70
Console.WriteLine();
71
@@ -77,9 +77,9 @@ private void PrintTableOrView(DataView view, string label)
77
78
for(int i = 0; i<view.Count;i++)
79
80
- Console.WriteLine("\table" + view[i]["item"]);
+ Console.WriteLine(view[i]["item"]);
81
82
83
84
85
-// </Snippet1>
+// </Snippet1>
0 commit comments