Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. private void initializare()
  2. {
  3. comboBox1.Items.Clear();
  4. foreach (string dirPatch in Directory.EnumerateDirectories("E:\\LPF"))
  5. {
  6. comboBox1.Items.Add(new DirectoryInfo(dirPatch).Name);
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement