S
shapper
Hello,
I need to us a TextWriter as an argument of a method:
System.IO.TextWriter t;
_parser.Go(t);
However I get, on the second line, the error:
Use of unassigned local variable 't'
But I am not able to do the following:
System.IO.TextWriter t = new TextWriter();
How can I solve this?
Thanks,
Miguel
I need to us a TextWriter as an argument of a method:
System.IO.TextWriter t;
_parser.Go(t);
However I get, on the second line, the error:
Use of unassigned local variable 't'
But I am not able to do the following:
System.IO.TextWriter t = new TextWriter();
How can I solve this?
Thanks,
Miguel