Is it possible (as was in VB - CallByName) to call function which name was
generated.
Example:
private static void DS_function()
{
}
private static void FD_function()
{
}
public static void call(string prefix)
{
CALLBYNAME(pref ix+"_function() "); //VB - like style
}
So is it possible to implement in C# ???
Thanx
generated.
Example:
private static void DS_function()
{
}
private static void FD_function()
{
}
public static void call(string prefix)
{
CALLBYNAME(pref ix+"_function() "); //VB - like style
}
So is it possible to implement in C# ???
Thanx
Comment