Created
August 23, 2012 23:07
-
-
Save amitapl/3443183 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void SetListViewHeader() | |
{ | |
_ds = new DataSet(); | |
DataTable table = new DataTable(); | |
_ds.Tables.Add(table); | |
DataColumn col = new DataColumn("Name", typeof(string)); | |
table.Columns.Add(col); | |
col = new DataColumn("Date", typeof(DateTime)); | |
table.Columns.Add(col); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment