// The above line has the following error when I run the program
// Error = System.NullReferenceException was unhandled
// Message="Object reference not set to an instance of an object."
class product
{
public String Code;
public String Description;
public List<batch> Batch;
}
class batch
{
public Int64 Cost;
public Int64 Rebate;
public Int64 Freight;
}
Bookmarks