Error 1 Operator '*' cannot be applied to operands of type 'method group' and 'double'

前端 未结 5 1880
难免孤独
难免孤独 2021-01-25 19:11

I believe what i am trying to do is very simple but I get the error. Operator \'*\' cannot be applied to operands of type \'method group\' and \'double\'

I want to mult

5条回答
  •  北荒
    北荒 (楼主)
    2021-01-25 19:21

    your syntax is just a little off (missing parentheses after function call and no return type specified for your function).

    if (checkBox1.Checked == true)
        rental = dayrental() * 19.95;
    
    public double dayrental()
    {
        var timeSpan = dateTimePicker2.Value - dateTimePicker1.Value;
        return (double) timeSpan.Days;
    }
    

提交回复
热议问题