XMLAuto version 2010
Posted by: Fabrice's weblog,
on 26 Sep 2009 |
View original | Bookmarked: 0 time(s)
Ten years ago, I played with OLE Automation so we can write things such as the following, where Document represents an XML document:String name = Document.Bookstore.Book[1].Author.LastName;Document.Bookstore.Book[1].Author.LastName = "NewName";The experiment was named XMLAuto.I wanted to implement this again with C# 4's dynamic keyword, but I won't have to do it. Mark Michaelis and Michael Stokesbary already played with this (last year).I find it's an interesting way to learn how to implement I...