Simple library which aims to simplify late binding calls with C#
Make simple late binding calls using a fluent interface:
IObjectOperation myObject = BindingFactory.CreateObjectBinding("CoreAssembly", "CExecutionManager");
int size = myObject.Property("CommandExecuter").Get()
.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