Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A ref or out argument must be an assignable variable

Tags:

c#

proxy

reverse

I'm coding an application which can make a reverse proxy connection but I have a problem! The error is here: new Form1.ProxyConfig()

When I try to run it I get an error: "A ref or out argument must be an assignable variable"

private void startToolStripMenuItem_Click(object sender, EventArgs e)
{
    if (this.startToolStripMenuItem.Text == "Start")
    {
        var form2 = new Form2();

        if (form2.ShowDialog() != DialogResult.OK)
            return;

        int num1 = Form1.ProxyListenerStart(ref new Form1.ProxyConfig()
        {
            pclient_port = form2.ClientPort,
            pp_start = form2.LocalStartPort,
            pp_end = form2.LocalEndPort
        }, ref this._PN);

        if (num1 != 0)
            int num2 = (int) MessageBox.Show("Error " + num1.ToString());
        else startToolStripMenuItem.Text = "Stop";
    }
    else
    {
        Form1.ProxyListenerStop();

        startToolStripMenuItem.Text = "Start";
        listView1.Items.Clear();
        toolStripStatusLabel2.Text = "0";
    }
}
private struct ProxyConfig
{
    public int pclient_port;
    public int pp_start;
    public int pp_end;
}
like image 533
Cazanova Haxor Avatar asked Jul 18 '14 15:07

Cazanova Haxor


1 Answers

You cannot create a variable and pass it as a reference at the same time like you're doing there. Try this:

var config = new Form1.ProxyConfig()
{
    pclient_port = form2.ClientPort,
    pp_start = form2.LocalStartPort,
    pp_end = form2.LocalEndPort
};

int num1 = Form1.ProxyListenerStart( ref config, ref this._PN );

The reason is that it really wouldn't make any sense, consider the following scenario:

if( int.TryParse( "123", out new int() ) )
{
    // there's no way for us to actually use the value TryParse stored
    // into the out parameter, since it doesn't have a name
}
like image 83
Chris Avatar answered Oct 19 '22 23:10

Chris