vote up 1 vote down star

I have this class:

public static class CsvWriter
    {
       private static StreamWriter _writer = new StreamWriter(@"c:\temp\ssis_list.csv");

       public static  StreamWriter Writer 
       {
          get { return _writer; }
       }
    }

This is being called from another class

 class Program
  {
     ...
     static void GetConnections(string path,string pkgname,string server)
        {

          _writer.WriteLine(myLine);
        }
   }

Which has this error

The name '_writer' does not exist in the current context

How can I fix this?

flag

2  
You may want to be careful about using a static shared Stream class via a static member. Static members are available to all threads in a process - but I/O streams are not implemented to be concurrently accessed from multiple threads. – LBushkin Oct 21 at 18:30

1 Answer

vote up 11 vote down check

You want CsvWriter.Writer.WriteLine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.