I'm getting the following error:
'Questionnaire' does not contain a definition for 'ProcessList'
Here Questionnaire.c s is a class file that defines a getter function ProcessList.
public class Questionnaire
{
private ArrayList ImpProcesses;
public Questionnaire()
{
//
// TODO: Add constructor logic here
//
}
public ArrayList ProcessList
{
get
{
return ImpProcesses;
}
}
}
The place where I'm calling ProcessList on Questionnaire object, VS2005 intellisense also provides this function in the list after I place dot after questionnaire object variable.
I don't get it, if intellisense has detected it why is it giving build errors.
'Questionnaire' does not contain a definition for 'ProcessList'
Here Questionnaire.c s is a class file that defines a getter function ProcessList.
public class Questionnaire
{
private ArrayList ImpProcesses;
public Questionnaire()
{
//
// TODO: Add constructor logic here
//
}
public ArrayList ProcessList
{
get
{
return ImpProcesses;
}
}
}
The place where I'm calling ProcessList on Questionnaire object, VS2005 intellisense also provides this function in the list after I place dot after questionnaire object variable.
I don't get it, if intellisense has detected it why is it giving build errors.
Comment