Sign In
Iron Curt
Dynamic Languages and the Programmers that Love Them
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
DynamicDataTable
Guts
IronPython
Archive
Archives
May 2009
(3)
April 2009
(1)
March 2009
(1)
November 2008
(3)
August 2008
(1)
July 2008
(2)
May, 2009
MSDN Blogs
>
Iron Curt
>
May, 2009
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Iron Curt
DynamicDataTable, Part 2
Posted
over 3 years ago
by
curth
1
Comments
The next thing we want for our dynamic DataTable is to do calculations between one or more columns. Imagine (for instance) that you want to add two columns and store the result in a third. In C#, the client code might look like this: dynamic table = new...
Iron Curt
DynamicDataTable, Part 1
Posted
over 3 years ago
by
curth
2
Comments
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...
Iron Curt
DynamicDataTable, Part 0
Posted
over 3 years ago
by
curth
1
Comments
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...
Page 1 of 1 (3 items)