Home » questions » Can i stored any statement in XML file and retrive it and exucute it in c#?
Can i stored any statement in XML file and retrive it and exucute it in c#?
I want to store validation condition statement in xml file and at the time of validation i retrieve that
and put into if condition instring and simply put in if condition.
Is this possible.
e.g
Suppose i want to validate data which in the range 1 - 100.
I can write in Xml file
data > 0 && data < 101
then i retrieve this condition
Like
string condition;
condition = fromxmlfile();
if( condition)
{
do something
}

Answers
Kryzchek
On 2006-08-08 09:46:14