Microbot->input parameters shows nothing

I have created dll in vs and imported in assistedge but the input parameters has nothing .I gave inputs ->
public String Excel1path
{
set
{
excel1path = value;
}
}

    [ArgumentDirection(Direction = DirectionType.Input)]
    public String Excel2path
    {
        set
        {
            excel2path = value;
        }
    }

    [ArgumentDirection(Direction = DirectionType.Input)]
    public String Sheet1
    {
        set
        {
            sheet1 = value;
        }
    }
    [ArgumentDirection(Direction = DirectionType.Input)]
    public String Sheet2
    {
        set
        {
            sheet2 = value;
        }
    }

    [ArgumentDirection(Direction = DirectionType.Output)]
    public String Result
    {
        get
        {
            return res;
        }
    }

Hi,

Your input and out put variable should be of access modified public. Also, write get function below the set function for each of the variable

Regards,
Amit Anand

Thanks anand its working. Also I have another problem getting that in assistedge i am getting answer only 5 times of 1 …what does it means

Hi,
Use excpetion handling in your micorbot code and see what is the exception when the result is not returned

Regards,
Amit Anand

Hi Anand .Same Problem occurs
public String excelpath1;
public String excelpath2;
public String excel1Input1;
public String excel2Input1;
public String excel1Input2;
public String excel2input2;
System.Data.DataTable dt1 = null;
System.Data.DataTable dt2 = null;
System.Data.DataTable NewDataTable = null;
string ColumnNames = “”;
public IWorkbook wb;
[ArgumentDirection(Direction = DirectionType.Input)]
public String Excelpath1
{
set
{
excelpath1 = value;
}
get
{
return excelpath1;
}
}

    [ArgumentDirection(Direction = DirectionType.Input)]
    public String Excelpath2
    {
        set
        {
            excelpath2 = value;
        }
        get
        {
            return excelpath2;
        }
    }

    [ArgumentDirection(Direction = DirectionType.Input)]
    public String CompareParameter1
    {
        set
        {
            excel1Input1 = value;
        }
        get
        {
            return excel1Input1;
        }
    }

    [ArgumentDirection(Direction = DirectionType.Input)]
    public String CompareParameter2
    {
        set
        {
            excel2Input1= value;
        }
        get
        {
            return excel2Input1;
        }
    }


    [ArgumentDirection(Direction = DirectionType.Input)]
    public String CompareParameter3
    {
        set
        {
            excel1Input2 = value;
        }
        get
        {
            return excel1Input2;
        }
    }

    [ArgumentDirection(Direction = DirectionType.Input)]
    public String CompareParameter4
    {
        set
        {
           excel2input2= value;
        }
        get
        {
            return excel2input2;
        }
    }

    [ArgumentDirection(Direction = DirectionType.Output)]
    public IWorkbook OutputExcel
    {


        set
        {
            wb = value;
        }
        get
        {
            return wb;
        }
    }