accessing classes in the app_code folder

  • Thread starter Thread starter Carlos
  • Start date Start date
C

Carlos

Hi all,

is it possible to access a static class written in C#
from a VB .Net based ASP .Net 2.0 app?
what would be the syntax. I jut tried to create a
static class in vb .net and it is not supported..

Thanks in advance,

Carlos
 
the syntax is ClassName.MethodName(), though unlike C# you can also
reference a static method via the instance obj.StaticMethod(). a static
class in vb is a module.

-- bruce (sqlwork.com)
 
Back
Top