P
puzzlecracker
I call method Foo(string s);
with Foo("foo"+"bar");
what's the deal here?
with Foo("foo"+"bar");
what's the deal here?
I call method Foo(string s);
with Foo("foo"+"bar");
what's the deal here?
I call method Foo(string s);
with Foo("foo"+"bar");
what's the deal here?
I call method Foo(string s);
with Foo("foo"+"bar");
what's the deal here?
My guess is that you're doing something like:
string x = Foo("foo" + "bar");
If not, please show a short but complete program which demonstrates
the problem.
Jon
I just call a method, with concatenation of two strings,that takes
string parameter. That's all.
BTW what is wrong with string x = Foo("foo" + "bar"); ?
I just call a method, with concatenation of two strings,that takes
string parameter. That's all.
BTW what is wrong with string x = Foo("foo" + "bar"); ?