Esempio n. 1
0
 static int AppendTextFileToStream(TextWriter outs,
                                   string path)
 {
     outs.Write(TextFile.AsString(path));
     return(0);
 }
Esempio n. 2
0
 public static string AsString( string path )
 {
     TextFile tf = new TextFile( path );
     return tf.Text;
 }
Esempio n. 3
0
        public static string AsString(string path)
        {
            TextFile tf = new TextFile(path);

            return(tf.Text);
        }