C
Chris
I am looking at this code in C#
Assembly a=Assembly.LoadFrom("employee.dll");
Type t=a.GetType("Company.Employee");
I can't figure out what it is in VB.net can anyone help. I try
Dim login_assembly = Assembly.LoadFile(Server.MapPath("bin/login.dll"))
Dim login_type As Type = login_assembly.GetType("clsLogin")
and I get a blue squiggly line under get type saying there is no default
property for 'system.type'
Regards
Assembly a=Assembly.LoadFrom("employee.dll");
Type t=a.GetType("Company.Employee");
I can't figure out what it is in VB.net can anyone help. I try
Dim login_assembly = Assembly.LoadFile(Server.MapPath("bin/login.dll"))
Dim login_type As Type = login_assembly.GetType("clsLogin")
and I get a blue squiggly line under get type saying there is no default
property for 'system.type'
Regards