public void ShapeData(Shapes shapes, out List<int> shpId, out int shpCount, out List<string> shpName,
out List<string> shpLabel, out List<string> lblValue)
{
чето делаем...
}
вызов????? ShapeData (shape);
Как вызвать метод, который принимает один параметр, и возвращает несколько типа out
Код:
Вызывается так:
Код:
this.ShapeData(shape, out shpId, out shpCount, out shpName, out shpLabel, out lblValue);
Спасибо, получилось.