0

私は以下のような構造体を持っています:

struct Add
{
    public static string url;
    public static string password;
    public static string fake_path;
    public static List<string> upload = new List<string>();
}

フォームから、これらすべての変数に入力します。そして、この構造体をキューに追加する必要があります。これを行う方法?

4

1 に答える 1

2

これを試して

System.Collections.Generic.Queue<Add> queue = new System.Collections.Generic.Queue<Add>();
// queue.Enqueue(new Add(...));
于 2013-01-24T12:34:09.187 に答える