The Question
My question is: Does C# nativly support late-binding IDispatch?
Pretend i'm trying to automate Office, while being compatible with whatever version the customer has installed.
In the .NET world if you developed with Office 2000 installed, every developer, and every customer, from now until the end of time, is required to have Office 2000.
In the world before .NET, we used COM to talk to Office applications.
For example:
1) Use the version independant ProgID
"Excel.Application"
which resolves to:
clsid = {00024500-0000-0000-C000-000000000046}
and then using COM, we ask for one of these classes to be instantiated into an object:
IUnknown unk;
CoCreateInstance(
clsid,
null,
CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER,
IUnknown,
out unk);
And now we're off to the races - able to use Excel from inside my application. Of course, if really you want to use the object, you have to call have some way of calling methods.
We could get ahold of the various interface declarations, translated into our language. This technique is good because we get
- early binding
- code-insight
- compile type syntax checking
and some example code might be:
Application xl = (IExcelApplication)unk;
ExcelWorkbook workbook = xl.Workbooks.Add(template, lcid);
Worksheet worksheet = workbook.ActiveSheet;
But there is a downside of using interfaces: we have to get ahold of the various interface declarations, transated into our language. And we're stuck using method-based invocations, having to specify all parameters, e.g.:
ExcelWorkbook workbook = xl.Workbooks.Add(template, lcid);
xl.Worksheets.Add(before, after, count, type, lcid);
This has proved, in the real world, to have such downsides that we would willingly give up:
- early binding
- code-insight
- compile time syntax checking
and instead use IDispatch late binding:
Variant xl = (IDispatch)unk;
Variant newWorksheet = xl.Worksheets.Add();
Because Excel automation was designed for VB Script, a lot of parameters can be ommitted, even when there is no overload without them.
Note: Don't confuse my example of Excel with a reason of why i want to use IDispatch. Not every COM object is Excel. Some COM objects have no support other than through IDispatch.
C# 4's
dynamic
keyword supports IDispatch and late binding. You can read Sam Ng's dynamic series for more informationOh, and C# 4 is only available as a CTP today. You'll have to either wait for Visual Studio vNext or use the beta (which runs on a Windows Server 2008 Virtual PC) to use that.
hey Dude, i have 2 codeplex projects currently to resolve this problem.
the first one is LateBindingApi.Excel http://excel.codeplex.com mapped latebinded invoke call to the well known object model. this was a test project for the following project.
the second one is a CodeGenerator http://latebindingapi.codeplex.com the tool creates c# projects from COM Type libraries. the generated projects includes mapper objects with latebind accessing the COM Server. the highlight is the tool converts COM type libs in different versions to one single project(for example excel 9,10,11) and marked all entities with an self defined SupportByLibrary Attribut. i have analyzed all office apps in version 9,10,11,12,14 with this this tool now and generate a c# solution, its available as tested beta with sample code on main page.
probably you can get away with much nicer code in in C# 2.0/3.0 if you take the time to write an interface containing the methods and properties you want of the object and add some attributes (i write it from memory, so details may not be correct, but i swear it worked for me...)
As mentioned, the code will not work out of the box, it is more a hint what to dig for in msdn.
You can, relativly, use late-binding IDispatch binding in C#.
http://support.microsoft.com/kb/302902
Here's some sample for using Excel. This way you don't need to add a needless dependancy on Microsoft's bloaty PIA:
You gotta wait for C# 4.0 to come out to get the late binding that you are looking for. Any time I need interop capabilities I switch back to VB.Net mode so I can take advantage of the COM capabilities that C# seems to lack.
The simple method that I use is creating a class in VB.Net that does the IDispatch work and then exposing the methods that I want to use as methods of my wrapper and then I can call them at will from my C# code. Not the most elegant of solutions, but it has gotten me out of a jam or two over the past few months.
As others have said - using c#4's "dynamic" keyword rocks. Here's a simple example - it so much more succint than using "InvokeMethod"