From a3ff22cf0d0423332650dcbd22204e8484f8c0fa Mon Sep 17 00:00:00 2001 From: Simon Aarons <40786398+simonmkwii-dev@users.noreply.github.com> Date: Thu, 4 Oct 2018 21:39:29 +1000 Subject: [PATCH] Update IO.cs --- IO.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/IO.cs b/IO.cs index 7220503..2c8d5f2 100644 --- a/IO.cs +++ b/IO.cs @@ -9,6 +9,7 @@ namespace SwitchExplorer { internal class IO { + // Source: https://stackoverflow.com/a/19332770 public static void PopulateTreeView(TreeView treeView, string[] paths, char pathSeparator) { TreeNode lastNode = null; @@ -32,4 +33,4 @@ public static void PopulateTreeView(TreeView treeView, string[] paths, char path } } } -} \ No newline at end of file +}