R
Rodolfo
Hello, there's another languages that can do a macro substitution, how can I
do this in Csharp.
This is an example of what I want to do
Dataset ds = new Dataset;
string a = "ds";
DataSet ds2 = &a;
This is a little more complex
int i = 6;
int j = 5;
string a = " i == j";
bool b = &a; //b will be false
TIA
do this in Csharp.
This is an example of what I want to do
Dataset ds = new Dataset;
string a = "ds";
DataSet ds2 = &a;
This is a little more complex
int i = 6;
int j = 5;
string a = " i == j";
bool b = &a; //b will be false
TIA