private static List<string> _Process;
public List<string> Process
{
get { return _Process; }
set { _Process = value; }
}
private static string _IDsCombination;
public string IDsCombination
{
get { return _IDsCombination; }
set { _IDsCombination = value; }
}
private static int _QCID;
public int QCID
{
get { return _QCID; }
set { _QCID = value; }
}
如上所述,我创建了一些静态变量,它们是否为所有用户共享相同的内存。