Sign in
Iron Curt
Dynamic Languages and the Programmers that Love Them
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
DynamicDataTable
Guts
IronPython
Browse by Tags
MSDN Blogs
>
Iron Curt
>
All Tags
>
dynamicdatatable
Tagged Content List
Blog Post:
DynamicDataTable, Part 1
curth
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 for the actual storage and a DynamicObject...
on
24 May 2009
Blog Post:
DynamicDataTable, Part 0
curth
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 be used to create a better development experience...
on
22 May 2009
Page 1 of 1 (2 items)