I've trying to achieve something like this:
class App {
static void Main(string[] args) {
System.Console.WriteLine(new Test("abc")); //output: 'abc'
System.Console.ReadLine();
}
}
I can do this passing by an variable:
class Test {
public static string str;
public Test (string input) { str = input; }
public override string ToString() {
return str;
}
}
works fine. But, my desire is do something as:
class Test {
public static string input;
public Test (out input) { }
public override string ToString() {
return input;
}
}
System.Console.WriteLine(new Test("abc test")); //abc test
Don't works. How I do this? Thanks,advanced.
System.Console.WriteLine(new Test("abc").Input);– Alex Aza Jun 16 '11 at 2:55strstatic in the first example?inputin the second? What are you really trying to do? – user414076 Jun 16 '11 at 2:55