memo_des_indispensables
Ceci est une ancienne révision du document !
Table des matières
MEMO des indispensables C#
Dossier et fichier
OpenFileDialog
- |OpenFileDialog
OpenFileDialog openFileDialogModele = new OpenFileDialog(); openFileDialogModele.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"; openFileDialogModele.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory); DialogResult result = openFileDialogModele.ShowDialog(); if (result == DialogResult.OK) { textBoxModele.Text = openFileDialogModele.FileName; }
Lecture d'un fichier texte
Lecture d'un fichier texte ligne par ligne
- |OpenFileDialog
List<string> lines = new List<string>(); string line; System.IO.StreamReader file = new System.IO.StreamReader(@"c:\test.txt"); while ((line = file.ReadLine()) != null) { lines.Add(line); }
memo_des_indispensables.1429304348.txt.gz · Dernière modification : 2017/12/06 16:11 (modification externe)