My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Project Information
Members
Featured
Downloads
Wiki pages
Links

Simple library which aims to simplify late binding calls with C#

Make simple late binding calls using a fluent interface:

IDynamic myObject = BindingFactory.CreateObjectBinding("CoreAssembly", "CExecutionManager");
int size = myObject.Property("CommandExecuter").Get<IDynamic>()
       .Method("Execute").AddParameter("GET SIZE").Invoke<int>();

Please check the Usage page for the help on using this library.

A deeply description of the 1. version of the library is available at CodeProject: Late Binding Helper Library in CodeProject

Powered by Google Project Hosting