私が取り組んでいる ASP.NET Web フォーム サイトは VB から C# に移行しているため、多くのクラスが VB にありますが、新しいクラスはすべて C# にあるはずです。
App_Code
ディレクトリにApp_Code/CSCode
は C# コード用のサブディレクトリ があり、メインディレクトリApp_Code
には VB クラスが含まれています。
App_Code
の C# クラスから VB クラスを参照したいのですがApp_Code/CSCode
、VB クラス定義が見つからないというコンパイル エラーが発生します。
The type or namespace name 'VBClass' could not be found (are you missing a using directive or an assembly reference?)
App_Code
の C# クラスからの VB クラスを参照することは可能App_code/CSCode
ですか?
前もって感謝します。