Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在将以下代码从 c# 转换为 VB.NET 时遇到问题。我已经尝试过在线转换器,但它们都在抛出错误。有人可以告诉我转换后的 VB.NET 代码吗?
FixedPage page2= new FixedPage(); PageContent page2Content = new PageContent(); ((IAddChild)page2Content).AddChild(page2);
你试过什么?
这个怎么样...
Dim page2 As New FixedPage() Dim page2Content As New PageContent() DirectCast(page2Content, IAddChild).AddChild(page2)