1

こんにちはみんな私はそのようなコードを持っています:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        struct Proxy
        {
            public static List<string> proxyList;
            public static string type;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog openFileDialog1 = new OpenFileDialog();
            openFileDialog1.Title = "Choose file with proxy";
            openFileDialog1.InitialDirectory = System.Environment.CurrentDirectory;
            openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
            if (checkBox1.Checked)
                Proxy.type = "socks5";
            else
                Proxy.type = "http";
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                foreach (string prox in File.ReadAllLines(openFileDialog1.FileName))
                {
                    if (prox.Contains(":"))
                    {
                        string[] proxy = prox.Split(':');
                        Proxy.proxyList.Add(prox);
                    }
                }
                MessageBox.Show(Proxy.proxyList.Count.ToString());
            }
        }

    }
}

しかし、txtファイルをロードすると:

62.109.28.37:8085
193.0.147.23:8085
193.0.147.90:8085
193.0.147.61:8085
193.0.147.47:8085
193.0.147.93:8085

例外を受け取ります:Proxy.proxyList.Add(prox); オブジェクト参照がオブジェクトのインスタンスに設定されていません。

なぜ?=\

4

2 に答える 2

6

proxyListですのでnull。変化する

public static List<string> proxyList;

public static List<string> proxyList = new List<string>();
于 2013-01-22T13:21:46.247 に答える
6

foreach ループの前など、リストを使用する前に、リストも作成する必要があります。

Proxy.proxyList = new List<string>();

または、構造体定義自体でこれを行うこともできます。

    struct Proxy
    {
        public static List<string> proxyList = new List<string>();
        public static string type;
    }
于 2013-01-22T13:21:35.257 に答える