In the code below I get the column name, I couldn't find a Value property in inputcolumn
I also need to get the value of the column, not only the name.
IDTSInput100 input = ComponentMetaData.InputCollection[0];
IDTSVirtualInput100 vinput = input.GetVirtualInput();
foreach (IDTSVirtualInputColumn100 inputcolumn in vinput.VirtualInputColumnCollection)
{
strAll += inputcolumn.Name + ", " + Environment.NewLine;
}