using System.Collections.Generic;
public static void Main()
DataTable table = new DataTable();
table.Columns.Add("Dosage", typeof(int));
table.Columns.Add("Drug", typeof(string));
table.Columns.Add("Patient", typeof(string));
table.Rows.Add(1, "Placebo", "Patient Zero");
FiddleHelper.WriteTable(table);