Skip to content

Instantly share code, notes, and snippets.

View nicholasinvb's full-sized avatar

Nicholas Salls nicholasinvb

  • Computac, Inc.
  • New Hampshire
View GitHub Profile
...
public CustomContentPage() {
NavigationPage.SetHasNavigationBar(this, false);
...
}
...
@bpraveen4u
bpraveen4u / merge_datatable.cs
Created November 5, 2012 06:26
Merge Two DataTables and remove duplicate rows
void Main()
{
DataTable table1 = new DataTable("Items");
// Add two columns to the table:
DataColumn column = new DataColumn("id", typeof(System.Int32));
table1.Columns.Add(column);
column = new DataColumn("item", typeof(System.String));
table1.Columns.Add(column);