我在VB中很糟糕,我試圖在VB中轉換下面的C#函數,使我遇到了很多錯誤...有人可以幫助我將其轉換爲VB。對於VB中的每個功能
C#
foreach (Google.GData.Client.IExtensionElementFactory property in googleEvent.ExtensionElements)
{
ExtendedProperty customProperty = property as ExtendedProperty;
if (customProperty != null)
genericEvent.EventID = customProperty.Value;
}
我有多個錯誤的轉換:
For Each Google.GData.Client.IExtensionElementFactory property in googleEvent.ExtensionElements
ExtendedProperty customProperty = property as ExtendedProperty
If (customProperty <> null) Then
genericEvent.EventID = customProperty.Value
End If
Next
如果您給我們提供了錯誤信息,這將有所幫助。 – 2011-05-13 19:59:05
太多「我也是」同一確切代碼的答案。有人可以鎖定這個問題嗎? – 2011-05-13 20:05:58