Scrittura testo su file

di il
1 risposte

Scrittura testo su file

Salve, sto eseguendo la scrittura su un file:
il compilatore mi da il seguente errore:

invalid token 'using' in class,struct, or interface member declaration
Perchè?

using System;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using System.Linq;
using System.Collections.Generic;

namespace label
{

    public class WriteToLabel
    {
         static void Main(string args)
         {
         
             //Customize the path you want write your label status here
             public const String filepath = "C:\\Users\\Alberto\\Desktop";
   
             string[] s = {"White"} ;
             using (StreamWriter f = new StreamWriter("filepath",true))
             { 
             f.WriteLine
             }

         }
    }
}

1 Risposte

  • Re: Scrittura testo su file

    Const String filepath = "C:\\Users\\Alberto\\Desktop";
    string[] s = { "White" };
    StreamWriter f = new StreamWriter(filepath, true);
    f.WriteLine(s);

    filepath è una costante stringa non devi passare al costruttore di streamwriter il nome della variabile come valore ma il suo valore passando la variabile stessa,
    f.writeline è un metodo a cui andrebbe passato un valore quindi f.WriteLine(s)

    //Customize the path you want write your label status here
    ti consiglierei di leggere con attenzione gli esempi che trovi su internet prima di utlizzarli
    dovresti chiudere lo stream dopo averlo usato,questo lo lascio trovare a te ,magari prova a stampare 100 righe in un ciclo tanto per "imparare"
Devi accedere o registrarti per scrivere nel forum
1 risposte