我正在使用 Microsoft.Office.Interop.Excel 将数据写入 C# 中的 excel 文件。我使用的是 Excel 2010,所以我添加了 Microsoft Excel 14.0 对象库作为参考。但现在我需要让程序在 Excel 2003 及更高版本上运行。因此,我删除了对 Microsoft Excel 14.0 对象库的引用,现在寻找一种方法来检查机器上安装的 Excel 版本,然后使用它的 COM 对象库。
目前,我使用此代码检查版本,但它返回“2007”而不是“2010”。我究竟做错了什么?
namespace OfficeVersionCheck
{
using System;
using Microsoft.Win32;
class Program
{
static void Main(string[] args)
{
RegistryKey localMachine = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Office\");
string version = string.Empty;
foreach (string key in localMachine.GetSubKeyNames())
{
if (key == "11.0")
version = "2003";
else if (key == "12.0")
version = "2007";
else if (key == "14.0")
version = "2010";
if (!string.IsNullOrEmpty(version))
{
break;
}
}
Console.Write(version);
Console.ReadKey();
}
}
}
现在检查版本后,我需要加载它的 COM 对象库以在我的程序中使用。有没有办法做到这一点?任何帮助,将不胜感激。提前致谢。