I'm using 6.5.1000.16 released.
I create a simple DLL with VS2008 SP1 Framework 2.0 witch contain a dimple public class:
namespace cl
{
public class clTest
{
public clTest()
{
}
}
}
After I add the dll to the reference.
I a new strategy I wrote :
using cl;
cl.clTest objTest;
protected override void Initialize()
{
try
{
Print("Initialize 1");
objTest= new cl.clTest() ;
Print("Initialize 2");
}
catch(Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
in the ouptot I can't see "Initialize 1" and "Initialize 2", but if I comment objTest= new cl.clTest() ; I will see the strings..why?where is the problem?
Thank you

Comment