我有 2 个类共享 10 个属性中的 9 个。我正在尝试执行您在下面看到的操作,但在当前上下文中不存在 gc。我想知道是否有
if (methodId == 2)
{
var gc = new LblPremium(id);
}
else
{
var gc = new LblIsoReport(id);
}
gc.Nbr = Nbr;
if (method == 2) { gc.Location = "Location Identification: " + pvtData.Location; }
..
..