Skip to content

Instantly share code, notes, and snippets.

@waldyrfelix
Created May 1, 2012 01:48
Show Gist options
  • Save waldyrfelix/2564309 to your computer and use it in GitHub Desktop.
Save waldyrfelix/2564309 to your computer and use it in GitHub Desktop.
Converte um dataset para array de inteiro
private int[] dataSetToArray(DataSet dataset)
{
return dataset.Tables[0].Select()
.Select(row => Convert.ToInt32(row["ANO"]))
.ToArray();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment