While looking for an example how to open an Excel file with Excel Interop I stumbled upon this answer where the author writes the following under a piece of code that uses the Workbooks.Open
method:
[..], this stuff is much easier if you use VB.NET. [..]. VB.NET does option parameters well, C# does not, hence the Type.Missing.
I compared this method in VB.NET and C# in a solution with two projects and they are identical. Do I miss something or is it correct that they have the same signature with a bunch of Object
typed parameters?