T
Tomas
Hello,
I have created ToolsClass public class in my application and I refer to
class methods like this
ToolsClass.MyMethod. If I put this class in assemblly VS give error that
cannot call instance member "MyMethod" without an instance reference.
So I must use code below. Maybe someone could explain why it is so? Do I
need to free created instance?
abc:=new ToolsClass;
abc.MyMethod
Regards,
Tomas
I have created ToolsClass public class in my application and I refer to
class methods like this
ToolsClass.MyMethod. If I put this class in assemblly VS give error that
cannot call instance member "MyMethod" without an instance reference.
So I must use code below. Maybe someone could explain why it is so? Do I
need to free created instance?
abc:=new ToolsClass;
abc.MyMethod
Regards,
Tomas