1
如何將此VB.NET代碼轉換爲C#?如何將此VB.NET代碼轉換爲C#?
Private myImageMapCalculations As New clsImageMapCalculations(Sub(ex As Exception) UnhandledExceptionHandler())
如何將此VB.NET代碼轉換爲C#?如何將此VB.NET代碼轉換爲C#?
Private myImageMapCalculations As New clsImageMapCalculations(Sub(ex As Exception) UnhandledExceptionHandler())
像這樣應該工作:
private clsImageMapCalculations myImageMapCalculations =
new clsImageMapCalculations((Exception ex) => UnhandledExceptionHandler());
,可以創建具有轉換工具的問題的部分是:
Sub(ex As Exception) UnhandledExceptionHandler()
,可以在C#轉換成相應lambda表達式:
(Exception ex) => UnhandledExceptionHandler()
private clsImageMapCalculations myImageMapCalculations = new clsImageMapCalculations((Exception ex) => UnhandledExceptionHandler());
VB.NET到C#的轉換可以通過轉換工具完成,例如參見http://www.developerfusion.com/tools/convert/vb-to-csharp/