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)