DataTable<Customer> Customers=db.GetTable<Customer>();

I understand the simple DataTable myTable = new DataTable;

Please describe what adding <Customer> is called, how the system handles it and what it is doing. Also, where else might this be used?

Thanks.