P
PL
I want to dynamicaly create variable and assigned it a particular name, for
exemple:
foreach (FileInfo FI in ArrayOfFiles)
{
string FI.Name = "AValueWhoDoesntMatter"
}
Of course, this sample doesn't works...
How can I set the string variable name to always be the value of the
property Name of the object FI?
Thank you
PL
exemple:
foreach (FileInfo FI in ArrayOfFiles)
{
string FI.Name = "AValueWhoDoesntMatter"
}
Of course, this sample doesn't works...
How can I set the string variable name to always be the value of the
property Name of the object FI?
Thank you
PL