Skip to content

Commit 861e354

Browse files
authored
Fix build (#3020)
1 parent 7db7af1 commit 861e354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/snippets/Microsoft.Data.SqlClient/SqlCommand.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,7 @@
12551255
while (reader.Read())
12561256
{
12571257
// Display all the columns.
1258-
for (int i = 0; i < reader.FieldCount; i++)
1258+
for (int i = 0; i &lt; reader.FieldCount; i++)
12591259
{
12601260
Console.Write("{0}\t", reader.GetValue(i));
12611261
}

0 commit comments

Comments
 (0)