这个 VB 函数将如何看起来像 C#?目标是确定一个字符串是否ref
代表一个有效的数据表Excel.Range
。这不是一个简单的 VB 到 C# 的转换,因为 Range 不能被构造。
Private Function IsRange(ref) As Boolean
' Returns True if ref is a Range
Dim x As Range
On Error Resume Next
Set x = Range(ref)
If Err = 0 Then IsRange = True Else IsRange = False
End Function
最好的