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

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