C
Chris Zopers
Hello,
I have a UserControl with the name Toolbox, so the UserControl's class
name is UserControls_Toolbox.
I want to pass this UserControl to a function in another (static) class,
just as you would do with for example a string value:
For example:
string sValue = 'hello';
OtherStaticClass.FunctionName(sValue);
But the problem is that the UserControl's type is unkown in the static
class, so I can't make a function that expects the UserControl as a
parameter.
How can I make something like this:
public void FunctionName(UserControls_Toolbox tb)
{
}
In an aspx page this is not a problem, because in an aspx page I can
declare a variable of type UserControls_Toolbox, but in an other class
this seems not to be possible. Anyone got an idea?
Greetings,
Chris
I have a UserControl with the name Toolbox, so the UserControl's class
name is UserControls_Toolbox.
I want to pass this UserControl to a function in another (static) class,
just as you would do with for example a string value:
For example:
string sValue = 'hello';
OtherStaticClass.FunctionName(sValue);
But the problem is that the UserControl's type is unkown in the static
class, so I can't make a function that expects the UserControl as a
parameter.
How can I make something like this:
public void FunctionName(UserControls_Toolbox tb)
{
}
In an aspx page this is not a problem, because in an aspx page I can
declare a variable of type UserControls_Toolbox, but in an other class
this seems not to be possible. Anyone got an idea?
Greetings,
Chris