Exemplo n.º 1
0
        private void ParseInput(object sender, EventArgs args)
        {
            proxylistAll.AddRange(ProxyParser.ParseString(textInput.Buffer.Text));

            Application.Invoke(delegate {
                labelTotal.Text = proxylistAll.Count.ToString();
            });
        }
Exemplo n.º 2
0
 private void WriteToFile(string filename)
 {
     ProxyParser.WriteFile(filename, ProxyParser.ParseString(textInput.Buffer.Text));
 }