我在将以下代码从c#转换为VB.NET时遇到了问题。 我尝试过在线转换器,但它们都是错误的。 有人能告诉我转换后的VB.NET代码。
FixedPage page2= new FixedPage();
PageContent page2Content = new PageContent();
((IAddChild)page2Content).AddChild(page2);
答案 0 :(得分:5)
你有什么尝试?
这个怎么样......
Dim page2 As New FixedPage()
Dim page2Content As New PageContent()
DirectCast(page2Content, IAddChild).AddChild(page2)