Ejemplo n.º 1
0
 public static Writer Open(string filename)
 {
     if (writer == null) writer = new Writer(filename);
       return writer;
 }
Ejemplo n.º 2
0
 public static Writer Instance()
 {
     if (writer == null) writer = new Writer("out.txt");
       return writer;
 }