示例#1
0
        private async void buttonToRoot_Click(object sender, EventArgs e)
        {
            try
            {
                string[] receivedStrings = await cl.FileExplorerToRoot();

                UpdateListBoxWith(receivedStrings);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }