如何判断Target.Value是双精度还是字符串

时间:2014-04-17 08:48:33

标签: c# excel vsto office-interop

我正在使用VSTO项目中的Excel工作表。

我正在使用活动

Excel.Worksheet.Change(Range Target)

它给出了Excel.Range的Target对象。我想通过使用

检查此Target是否具有字符串或双精度值
Target.Value

我该怎么做?

1 个答案:

答案 0 :(得分:1)

嗯...也许试试

object obj = Target.Value;
MessageBox.Show(obj.GetType().ToString());