Does C# .NET support IDispatch late binding? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:38:28Z http://stackoverflow.com/feeds/question/403218 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding 2 Does C# .NET support IDispatch late binding? Ian Boyd 2008-12-31T15:33:16Z 2009-11-01T12:29:37Z <p><hr /></p> <h2>The Question</h2> <p>My question is: <strong>Does C# nativly support late-binding IDispatch?</strong></p> <p><hr /></p> <p><em>Pretend</em> i'm trying to automate Office, while being compatible with whatever version the customer has installed. </p> <p>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.</p> <p>In the world before .NET, we used <strong>COM</strong> to talk to Office applications. </p> <p>For example:</p> <p>1) Use the version independant ProgID</p> <pre><code>"Excel.Application" </code></pre> <p>which resolves to:</p> <pre><code>clsid = {00024500-0000-0000-C000-000000000046} </code></pre> <p>and then using COM, we ask for one of these classes to be instantiated into an object:</p> <pre><code>IUnknown unk; CoCreateInstance( clsid, null, CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, IUnknown, out unk); </code></pre> <p>And now we're off to the races - able to use Excel from inside my application. Of course, if <em>really</em> you want to use the object, you have to call have some way of calling methods. </p> <p>We <em>could</em> get ahold of the various <strong>interface</strong> declarations, translated into our language. This technique is good because we get </p> <ul> <li>early binding</li> <li>code-insight </li> <li>compile type syntax checking</li> </ul> <p>and some example code might be:</p> <pre><code>Application xl = (IExcelApplication)unk; ExcelWorkbook workbook = xl.Workbooks.Add(template, lcid); Worksheet worksheet = workbook.ActiveSheet; </code></pre> <p><hr /></p> <p>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.:</p> <pre><code>ExcelWorkbook workbook = xl.Workbooks.Add(template, lcid); xl.Worksheets.Add(before, after, count, type, lcid); </code></pre> <p>This has proved, in the real world, to have such downsides that we would willingly give up:</p> <ul> <li>early binding</li> <li>code-insight</li> <li>compile time syntax checking</li> </ul> <p>and instead use <strong>IDispatch</strong> late binding:</p> <pre><code>Variant xl = (IDispatch)unk; Variant newWorksheet = xl.Worksheets.Add(); </code></pre> <p>Because Excel automation was designed for VB Script, a lot of parameters can be ommitted, even when there is no overload without them.</p> <p><strong>Note:</strong> 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.</p> http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding/403226#403226 2 Answer by configurator for Does C# .NET support IDispatch late binding? configurator 2008-12-31T15:36:37Z 2008-12-31T16:54:26Z <p>C# 4's <code>dynamic</code> keyword supports IDispatch and late binding. You can read Sam Ng's <a href="http://blogs.msdn.com/samng/archive/tags/Dynamic/default.aspx" rel="nofollow">dynamic series</a> for more information</p> <p>Oh, 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.</p> http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding/403247#403247 5 Answer by thaBadDawg for Does C# .NET support IDispatch late binding? thaBadDawg 2008-12-31T15:43:30Z 2008-12-31T15:43:30Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding/489272#489272 7 Answer by Ian Boyd for Does C# .NET support IDispatch late binding? Ian Boyd 2009-01-28T20:47:42Z 2009-02-03T15:07:06Z <p>You can, relativly, use late-binding IDispatch binding in C#.</p> <p><a href="http://support.microsoft.com/kb/302902" rel="nofollow">http://support.microsoft.com/kb/302902</a></p> <p>Here's some sample for using Excel. This way you don't need to add a needless dependancy on Microsoft's bloaty PIA:</p> <pre><code>//Create XL Object xl = Activator.CreateInstance(Type.GetTypeFromProgID("Excel.Application")); //Get the workbooks collection. // books = xl.Workbooks; Object books = xl.GetType().InvokeMember( "Workbooks", BindingFlags.GetProperty, null, xl, null); //Add a new workbook. // book = books.Add(); Objet book = books.GetType().InvokeMember( "Add", BindingFlags.InvokeMethod, null, books, null ); //Get the worksheets collection. // sheets = book.Worksheets; Object sheets = book.GetType().InvokeMember( "Worksheets", BindingFlags.GetProperty, null, book, null ); Object[] parameters; //Get the first worksheet. // sheet = sheets.Item[1] parameters = new Object[1]; parameters[0] = 1; Object sheet = sheets.GetType().InvokeMember( "Item", BindingFlags.GetProperty, null, sheets, parameters ); //Get a range object that contains cell A1. // range = sheet.Range["A1]; parameters = new Object[2]; parameters[0] = "A1"; parameters[1] = Missing.Value; Object range = sheet.GetType().InvokeMember( "Range", BindingFlags.GetProperty, null, sheet, parameters ); //Write "Hello, World!" in cell A1. // range.Value = "Hello, World!"; parameters = new Object[1]; parameters[0] = "Hello, World!"; objRange_Late.GetType().InvokeMember( "Value", BindingFlags.SetProperty, null, range, parameters ); //Return control of Excel to the user. // xl.Visible = true; // xl.UserControl = true; parameters = new Object[1]; parameters[0] = true; xl.GetType().InvokeMember( "Visible", BindingFlags.SetProperty, null, xl, Parameters ); xl.GetType().InvokeMember( "UserControl", BindingFlags.SetProperty, null, xl, Parameters ); </code></pre> http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding/1655540#1655540 0 Answer by Thomas for Does C# .NET support IDispatch late binding? Thomas 2009-10-31T20:31:59Z 2009-10-31T20:31:59Z <p>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...)</p> <pre><code> using System.Runtime.Interopservices; [Guid("00024500-0000-0000-C000-000000000046")] [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] interface IExcel { // sample property string Name{get;} // more properties } // and somewhere else void main() { Object xl = Activator.CreateInstance(Type.GetTypeFromProgID("Excel.Application")); IExcel excel = (IExcel)xl; string name = xl.name } </code></pre> <p>As mentioned, the code will not work out of the box, it is more a hint what to dig for in msdn.</p>