reconstruct function foo from string(foo)
jack · Thu Mar 27, 2014 8:40 pm
Hello,
is it possible to reconstruct a function from a string?
if yes, is it reliable?
Thanks,
Jack
is it possible to reconstruct a function from a string?
Code:
proc foo( int param )
{
return(0);
}
string fooStr = string(foo);
fooStr;
// parameter int param ;
//
// return(0);
//
//
// ;return();
{
return(0);
}
string fooStr = string(foo);
fooStr;
// parameter int param ;
//
// return(0);
//
//
// ;return();
if yes, is it reliable?
Thanks,
Jack