This file contains hidden or 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 CustomContentPage() { | |
| NavigationPage.SetHasNavigationBar(this, false); | |
| ... | |
| } | |
| ... |
This file contains hidden or 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
| 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); |