public static void Main()
Console.WriteLine("Hello World");
System.Data.DataTable dt = new DataTable();
dt.Columns.Add("CheckState", typeof(bool));
dt.Columns.Add("Date Posted", typeof(DateTime));
dt.Columns.Add("Amount", typeof(Decimal));
dt.Columns.Add("Description", typeof(string));
dt.Columns.Add("Date Last Reversed", typeof(DateTime));
dt.Columns.Add("Amount Reversed", typeof(Decimal));
DataColumn column = dt.Columns["Date Last Reversed"];
column.AllowDBNull = true;
column = dt.Columns["Amount Reversed"];
column.AllowDBNull = true;
DataRow row = dt.NewRow();
Console.WriteLine(dt.Rows.Count);
Console.WriteLine(Convert.ToString(obj).Length);
string str = "TRANSACTION NUMBER: 605178832";