Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » DynamicDataTable   (RSS)
Sorry, but there are no more tags available to filter with.

DynamicDataTable, Part 1

Let’s get started by doing “the simplest thing that could possibly work”. public class DynamicDataTable : DynamicObject { private readonly DataTable _table; public DynamicDataTable( DataTable table) { _table = table; } } For now, we’ll use a DataTable
Posted by curth | 2 Comments
Filed under:

DynamicDataTable, Part 0

To commemorate the first beta release of the first CLR to contain the DLR, I’m going to try to implement something more interesting than useful – a dynamic version of the DataTable class. My goal is to show how the dynamic support in C#4 and VB10 can
Posted by curth | 1 Comments
Filed under:
 
Page view tracker