public static string myTable(Table xTable){ //here you can unpack the contents of the object string name = xTable.Name; string description = xTable.Description;}
so could I continue to define table
table.Name2= "My Test Name2" ??
goodk
ASKER
able table = new Table();
table.Name = "My Test Name";
table.Description = "My Test Description";
table.Description2 = "My Test Description2";
table.Description3 = "My Test Description3";
string myTableResult = myTable(table);
Object Definition
Open in new window
Modified Method
Open in new window
Hope this helps